-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (29 loc) · 1.88 KB
/
Copy path.env.example
File metadata and controls
34 lines (29 loc) · 1.88 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
33
34
# SYNA - Environment Configuration
# Copy this file to .env and fill in your values
# ──────────────────────────────────────────────
# API Keys
# ──────────────────────────────────────────────
OPENAI_API_KEY=sk-your-openai-api-key-here
GITHUB_TOKEN=ghp_your-github-token-here
# ──────────────────────────────────────────────
# Server Configuration
# ──────────────────────────────────────────────
SYNAPSE_PORT=8080
SYNAPSE_HOST=0.0.0.0
SYNAPSE_DEBUG=false
# ──────────────────────────────────────────────
# Model Configuration
# ──────────────────────────────────────────────
SYNAPSE_MODEL=gpt-4o
SYNAPSE_MAX_TOKENS=4096
SYNAPSE_TEMPERATURE=0.2
# ──────────────────────────────────────────────
# Token Tracking
# ──────────────────────────────────────────────
SYNAPSE_DAILY_TOKEN_LIMIT=500000
SYNAPSE_ENABLE_COST_TRACKING=true
# ──────────────────────────────────────────────
# Agent Pipeline
# ──────────────────────────────────────────────
SYNAPSE_PARALLEL_AGENTS=false
SYNAPSE_AGENT_TIMEOUT=120