-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (28 loc) · 1017 Bytes
/
.env.example
File metadata and controls
33 lines (28 loc) · 1017 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
DEFAULT_CHAT_HARNESS_KEY=openai
# OpenAI configuration for DEFAULT_CHAT_HARNESS_KEY=openai
OPENAI_API_KEY=your_api_key_here
OPENAI_MODEL=gpt-5-mini
OPENAI_PROMPT_NAME=default
# OPENAI_TEMPERATURE=1.0
# OPENAI_TIMEOUT_SECONDS=30
# Anthropic configuration for DEFAULT_CHAT_HARNESS_KEY=anthropic
# ANTHROPIC_API_KEY=your_api_key_here
# ANTHROPIC_MODEL=claude-sonnet-4-20250514
# ANTHROPIC_PROMPT_NAME=default
# ANTHROPIC_TEMPERATURE=1.0
# ANTHROPIC_TIMEOUT_SECONDS=30
# ANTHROPIC_MAX_TOKENS=1024
# CHAT_DATABASE_PATH=data/chat.db
# Optional logging configuration
# LOG_LEVEL=INFO
# COMPONENT_LOG_LEVELS=api=INFO,agent.openai=INFO,agent.anthropic=INFO
# LOG_TO_FILE=false
# LOG_DIR=logs
# APP_NAME=ai_chat
# Optional CORS configuration
# Default baseline is wildcard origins with credentials disabled.
# If you enable credentials, set explicit origins instead of "*".
# CORS_ALLOWED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
# CORS_ALLOW_CREDENTIALS=false
# CORS_ALLOWED_METHODS=*
# CORS_ALLOWED_HEADERS=*