-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 793 Bytes
/
.env.example
File metadata and controls
23 lines (18 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# LLM API Configuration
# Copy this file to .env and fill in your actual values
# IMPORTANT: Never commit the .env file to version control!
# Your LLM API endpoint (e.g., https://api.openai.com/v1)
OPENAI_API_BASE=https://api.openai.com/v1
# Your API key (get from your LLM provider)
# For OpenAI: https://platform.openai.com/api-keys
# For Anthropic: https://console.anthropic.com/
OPENAI_API_KEY=sk-your-key-here
# Model name to use
# OpenAI examples: gpt-4, gpt-4-turbo, gpt-3.5-turbo
# Anthropic examples: claude-opus-4-6, claude-sonnet-4-5
# Custom models: openai/Qwen/Qwen3-32B (for custom endpoints)
OPENAI_MODEL_NAME=gpt-4
# Optional: Temperature for responses (0.0 = deterministic, 1.0 = creative)
OPENAI_TEMPERATURE=0
# Optional: Max tokens per response
OPENAI_MAX_TOKENS=32000