-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (27 loc) · 928 Bytes
/
.env.example
File metadata and controls
35 lines (27 loc) · 928 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
# Anthropic API Configuration
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# OpenAI API Configuration
OPENAI_API_KEY=your_openai_api_key_here
# Google Gemini API Configuration
GEMINI_API_KEY=your_gemini_api_key_here
# Ollama Configuration (optional - for local AI models)
# Default: http://localhost:11434
OLLAMA_HOST=http://localhost:11434
# LM Studio Configuration (optional - for local AI models)
# Default: http://localhost:1234
# If running on another machine, use its IP address
LMSTUDIO_HOST=http://localhost:1234
# Whisper GPU Server (optional - for remote GPU transcription)
# Leave empty to use local CPU whisper
WHISPER_SERVER_URL=
# Server Configuration
HOST=0.0.0.0
PORT=8000
# Database
DATABASE_URL=sqlite+aiosqlite:///./conversations.db
# Docker Configuration
DOCKER_CPU_QUOTA=200000
DOCKER_MEMORY_LIMIT=8g
DOCKER_STORAGE_LIMIT=20G
DOCKER_EXECUTION_TIMEOUT=30
DOCKER_EXPORT_PATH=./docker_images_exported