-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (34 loc) · 980 Bytes
/
.env.example
File metadata and controls
40 lines (34 loc) · 980 Bytes
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
36
37
38
39
40
# ==========================================================
# MedXpert Environment Configuration Example
# ==========================================================
# ------------------------
# API Keys
# ------------------------
# Replace with your actual Gemini API key before running.
GEMINI_API_KEY="your-gemini-api-key-here"
# ------------------------
# Model Paths
# ------------------------
MODEL_DIR=./models
FRONTAL_MODEL_PATH=./models/frontal_model_best.pth
LATERAL_MODEL_PATH=./models/lateral_model_best.pth
VIEW_MODEL_PATH=./models/view_classifier.pth
# ------------------------
# Database
# ------------------------
DB_PATH=./chroma_db
# ------------------------
# API Configuration
# ------------------------
API_HOST=0.0.0.0
API_PORT=8000
# ------------------------
# Streamlit Configuration
# ------------------------
STREAMLIT_PORT=8501
# ------------------------
# Environment
# ------------------------
ENVIRONMENT=production
DEBUG=false
LOG_LEVEL=INFO