-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (23 loc) · 1.03 KB
/
Copy path.env.example
File metadata and controls
29 lines (23 loc) · 1.03 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
# Copy this file to .env and fill in your API keys
# Only the key matching your chosen provider is required
# Active LLM provider and model (required)
LLM_PROVIDER=anthropic # one of: openai, anthropic, gemini, local
LLM_MODEL=claude-sonnet-4-6
ANTHROPIC_API_KEY=sk-ant-...
OPENAI_API_KEY=sk-...
GEMINI_API_KEY=...
# Local model server (Ollama, LM Studio, LocalAI, or any OpenAI-compatible server)
# Default points to Ollama's OpenAI-compatible endpoint
LOCAL_MODEL_BASE_URL=http://localhost:11434/v1
# Set this if your local server requires an API key; leave blank otherwise
LOCAL_MODEL_API_KEY=
# OpenMRS connection — used when calling the OpenMRS REST/FHIR APIs
# Include the context path (e.g. /openmrs) if your instance uses one
OPENMRS_BASE_URL=http://localhost:8080/openmrs
OPENMRS_USERNAME=admin
OPENMRS_PASSWORD=Admin123
# Port the server listens on (default: 3001)
PORT=3001
# Comma-separated list of allowed CORS origins
# e.g. ALLOWED_ORIGINS=http://localhost:8080,https://my-openmrs.example.com
ALLOWED_ORIGINS=http://localhost:8080