-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (30 loc) · 1.59 KB
/
Copy path.env.example
File metadata and controls
35 lines (30 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# ============================================================
# AI Radiology Assistant — Environment Configuration
# ============================================================
# Copy this file to .env and fill in your API keys.
# ── LLM Providers ──────────────────────────────────────────
ANTHROPIC_API_KEY=your_anthropic_api_key
GOOGLE_API_KEY=your_google_gemini_api_key
GROQ_API_KEY=your_groq_api_key
DEFAULT_LLM_PROVIDER=groq # Options: anthropic, google, groq
# ── Embedding Provider ─────────────────────────────────────
EMBEDDING_PROVIDER=cohere # Options: cohere, openai
COHERE_API_KEY=your_cohere_api_key
OPENAI_API_KEY=your_openai_api_key
EMBEDDING_MODEL=embed-english-v3.0
EMBEDDING_DIMENSION=1024
# ── Vector Database (Qdrant) ───────────────────────────────
QDRANT_HOST=localhost
QDRANT_PORT=6333
QDRANT_COLLECTION=radiology_docs
# ── Search APIs ────────────────────────────────────────────
TAVILY_API_KEY=your_tavily_api_key
EXA_API_KEY=your_exa_api_key
# ── Application ────────────────────────────────────────────
APP_NAME=AI Radiology Assistant
APP_ENV=development
APP_DEBUG=true
BACKEND_PORT=8000
FRONTEND_URL=http://localhost:3000
CORS_ORIGINS=["http://localhost:3000"]
LOG_LEVEL=INFO