-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
31 lines (25 loc) · 769 Bytes
/
.env.example
File metadata and controls
31 lines (25 loc) · 769 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
# OpenAI Configuration
OPENAI_API_KEY=your-openai-key
OPENAI_DEFAULT_MODEL=gpt-4o-mini
OPENAI_MAX_TOKENS=8000
# Anthropic (Claude) Configuration
ANTHROPIC_API_KEY=your-claude-key
ANTHROPIC_DEFAULT_MODEL=claude-3-5-haiku-20241022
ANTHROPIC_MAX_TOKENS=8000
# Groq Configuration
GROQ_API_KEY=your-groq-key
GROQ_DEFAULT_MODEL=mixtral-8x7b-32768
GROQ_MAX_TOKENS=8000
# Openrouter Configuration
OPENROUTER_API_KEY=your-openrouter-key
OPENROUTER_DEFAULT_MODEL=deepseek/deepseek-r1:free
OPENROUTER_MAX_TOKENS=8000
# Ollama Configuration
OLLAMA_HOST=http://localhost:11434
OLLAMA_DEFAULT_MODEL=llama3.1 # this should be based on the model you have installed
OLLAMA_MAX_TOKENS=8000
# Global Settings (optional)
TEMPERATURE=0.7
LOG_LEVEL=INFO
LOG_FILE=chat.log
LOG_DIR=logs