Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 454 Bytes

File metadata and controls

18 lines (15 loc) · 454 Bytes

multimodal-assistant-api

FastAPI service for multimodal prompt processing with text and image URL inputs.

Capabilities

  • Accepts text and optional image URL.
  • Runs moderation checks.
  • Produces structured assistant responses with citations placeholders.
  • Includes health and version endpoints for deployment checks.

Run

python -m venv .venv
source .venv/bin/activate
pip install -e .[dev]
uvicorn app.main:app --reload
pytest -q