Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 596 Bytes

File metadata and controls

13 lines (11 loc) · 596 Bytes

Docker Quickstart

git clone https://github.com/your-org/rag-financial-multimodal
cd rag-financial-multimodal
cp .env.example .env   # set OPENAI_API_KEY
docker compose up -d
curl -X POST http://localhost:8000/api/v1/ingest -F "file=@your_10k.pdf" -F "tenant_id=demo"
curl -X POST http://localhost:8000/api/v1/query -H "Content-Type: application/json" -d '{"query": "What was gross margin?", "tenant_id": "demo"}'

With observability: docker compose --profile observability up -d