mirror of
https://github.com/eggent-ai/eggent.git
synced 2026-03-07 10:03:19 +00:00
34 lines
816 B
Plaintext
34 lines
816 B
Plaintext
# === Eggent Configuration ===
|
|
|
|
# OpenAI (required for default model)
|
|
OPENAI_API_KEY=sk-...
|
|
|
|
# Anthropic (optional)
|
|
ANTHROPIC_API_KEY=sk-ant-...
|
|
|
|
# Google (optional)
|
|
GOOGLE_API_KEY=...
|
|
|
|
# OpenRouter (optional)
|
|
OPENROUTER_API_KEY=sk-or-...
|
|
|
|
# Tavily Search (optional - for web search)
|
|
TAVILY_API_KEY=tvly-...
|
|
|
|
# External integrations API token (optional fallback for /api/external/message)
|
|
EXTERNAL_API_TOKEN=replace-with-a-long-random-token
|
|
|
|
# App auth session secret (required for secure cookie signing)
|
|
EGGENT_AUTH_SECRET=replace-with-a-long-random-secret
|
|
|
|
# Telegram integration (optional; UI can auto-configure from bot token only)
|
|
TELEGRAM_BOT_TOKEN=
|
|
TELEGRAM_WEBHOOK_SECRET=
|
|
TELEGRAM_DEFAULT_PROJECT_ID=
|
|
|
|
# Docker runtime bind settings
|
|
APP_BIND_HOST=127.0.0.1
|
|
APP_PORT=3000
|
|
|
|
APP_BASE_URL=http://localhost:3000
|