forked from Ido-Levi/Hephaestus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (27 loc) · 967 Bytes
/
.env.example
File metadata and controls
34 lines (27 loc) · 967 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
32
33
34
# LLM Provider Configuration
# NOTE: LLM provider and model are now configured in hephaestus_config.yaml
# Only API keys are needed in environment variables
# Required: OpenAI API key (for embeddings only - we use text-embedding-3-large)
OPENAI_API_KEY=sk-...
# Optional: Additional provider API keys (if using OpenRouter, Groq, etc.)
OPENROUTER_API_KEY=sk-or-...
GROQ_API_KEY=gsk_...
ANTHROPIC_API_KEY=sk-ant-...
# DEPRECATED: These are no longer used - configure in hephaestus_config.yaml instead
# LLM_PROVIDER=openai
# LLM_MODEL=gpt-4-turbo
# EMBEDDING_MODEL=text-embedding-ada-002
# Database Configuration
DATABASE_PATH=./hephaestus.db
QDRANT_URL=http://localhost:6333
QDRANT_COLLECTION_PREFIX=hephaestus
# MCP Server Configuration
MCP_PORT=8000
MCP_HOST=0.0.0.0
# Monitoring Configuration
MONITORING_INTERVAL_SECONDS=60
MAX_HEALTH_CHECK_FAILURES=3
AGENT_TIMEOUT_MINUTES=30
MAX_CONCURRENT_AGENTS=10
# Default CLI Tool
DEFAULT_CLI_TOOL=claude # or "codex"