consolidate: HQ env example
Browse files- hq/.env.example +32 -0
hq/.env.example
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Agent Q3 [HQ] — Environment Variables
|
| 2 |
+
|
| 3 |
+
# Models
|
| 4 |
+
REASONER_MODEL=gemma4:e4b-instruct-q4_K_M
|
| 5 |
+
CODER_MODEL=qwen3.5:4b-instruct-q4_K_M
|
| 6 |
+
|
| 7 |
+
# Compute Strategy: round_robin | local_first | hf_first | runpod_first | load_based
|
| 8 |
+
COMPUTE_STRATEGY=round_robin
|
| 9 |
+
|
| 10 |
+
# Backends
|
| 11 |
+
OLLAMA_URL=http://localhost:11434/v1/chat/completions
|
| 12 |
+
HF_ENDPOINT=https://api-inference.huggingface.co/models/YOUR_MODEL
|
| 13 |
+
HF_TOKEN=hf_xxx
|
| 14 |
+
OPENROUTER_API_KEY=sk-or-xxx
|
| 15 |
+
RUNPOD_API_KEY=xxx
|
| 16 |
+
RUNPOD_ENDPOINT=https://api.runpod.ai/v2/YOUR_ENDPOINT/runsync
|
| 17 |
+
|
| 18 |
+
# MCP / Integrations
|
| 19 |
+
GITHUB_TOKEN=ghp_xxx
|
| 20 |
+
SLACK_BOT_TOKEN=xoxb-xxx
|
| 21 |
+
NOTION_API_KEY=secret_xxx
|
| 22 |
+
LINEAR_API_KEY=lin_api_xxx
|
| 23 |
+
SUPABASE_URL=https://xxx.supabase.co
|
| 24 |
+
SUPABASE_SERVICE_KEY=xxx
|
| 25 |
+
ALCHEMY_API_KEY=xxx
|
| 26 |
+
BRAVE_API_KEY=xxx
|
| 27 |
+
DATABASE_URL=postgresql://xxx
|
| 28 |
+
REDIS_URL=redis://localhost:6379
|
| 29 |
+
WORKSPACE_PATH=/workspace
|
| 30 |
+
|
| 31 |
+
# Server
|
| 32 |
+
PORT=8000
|