-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (31 loc) · 1.03 KB
/
Copy path.env.example
File metadata and controls
32 lines (31 loc) · 1.03 KB
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
# === LLM Provider Configuration ===
# Works with ANY OpenAI-compatible API. Just change base_url and api_key.
#
# GROQ (free, fast, no CC): console.groq.com
LLM_API_KEY=gsk_your-groq-key-here
LLM_BASE_URL=https://api.groq.com/openai/v1
COUNCIL_MODEL=llama-3.3-70b-versatile
#
# GOOGLE AI STUDIO (free, generous): ai.google.dev
# LLM_API_KEY=your-google-ai-key
# LLM_BASE_URL=https://generativelanguage.googleapis.com/v1beta/openai/
# COUNCIL_MODEL=gemini-2.5-flash
#
# OPENROUTER (free, 27+ models): openrouter.ai
# LLM_API_KEY=sk-or-your-key
# LLM_BASE_URL=https://openrouter.ai/api/v1
# COUNCIL_MODEL=meta-llama/llama-3.3-70b-instruct:free
#
# CEREBRAS (free, fast): cloud.cerebras.ai
# LLM_API_KEY=your-cerebras-key
# LLM_BASE_URL=https://api.cerebras.ai/v1
# COUNCIL_MODEL=qwen3-32b
#
# LLM7.io (NO SIGNUP NEEDED):
# LLM_API_KEY=unused
# LLM_BASE_URL=https://api.llm7.io/v1
# COUNCIL_MODEL=codestral-latest
# Temperature: lower = more consistent, higher = more creative
COUNCIL_TEMPERATURE=0.85
# Max tokens per agent response
COUNCIL_MAX_TOKENS=500