Spaces:
Sleeping
Sleeping
File size: 435 Bytes
c32bf13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Google AI Studio API key for cloud Gemma 4
# Get yours at https://aistudio.google.com
GEMINI_API_KEY=your_api_key_here
# Whisper model size: tiny, base, small, medium, large-v3
WHISPER_MODEL=base
# Ollama local model for symptom extraction
OLLAMA_MODEL=gemma4:e2b
# Cloud Gemma model for SOAP notes, summary, translation
# Available: gemma-4-26b-a4b-it (faster MoE) or gemma-4-31b-it (most capable)
CLOUD_MODEL=gemma-4-26b-a4b-it
|