-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
38 lines (27 loc) · 938 Bytes
/
env.example
File metadata and controls
38 lines (27 loc) · 938 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
# API Keys for various AI services
# At least one of these is required depending on your model choice
# OpenAI API Key (for GPT-4o, GPT-3.5, etc.)
OPENAI_API_KEY=your_openai_api_key_here
# Anthropic API Key (for Claude models)
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Google AI API Key (for Gemini models)
GOOGLE_AI_API_KEY=your_google_ai_api_key_here
# Cohere API Key (if using Cohere models)
COHERE_API_KEY=your_cohere_api_key_here
# Optional: AgentOps configuration (for monitoring)
AGENTOPS_API_KEY=your_agentops_api_key_here
# vLLM Configuration (for local model deployment)
VLLM_API_BASE=http://localhost:8000/v1
VLLM_VL_API_BASE=http://localhost:8001/v1
# Model Configuration
DEFAULT_TEXT_MODEL=4o
DEFAULT_VISION_MODEL=4o
# Poster Configuration
DEFAULT_POSTER_WIDTH_INCHES=48
DEFAULT_POSTER_HEIGHT_INCHES=36
# Logging Level
LOG_LEVEL=INFO
# Temporary Directory
TMP_DIR=tmp
# Cache Directory
CACHE_DIR=model_cache