-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy path.env.example
More file actions
23 lines (19 loc) · 1015 Bytes
/
.env.example
File metadata and controls
23 lines (19 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# LLM provider — we use LiteLLM (https://docs.litellm.ai/) under the hood,
# so set the env var that matches your provider. See all supported providers:
# https://docs.litellm.ai/docs/providers
# Default model is anthropic/claude-haiku-4-5-20251001 (requires ANTHROPIC_API_KEY).
ANTHROPIC_API_KEY=
# OPENAI_API_KEY=
# Optional: override model (must match the API key you set above)
# Uses LiteLLM model format — see https://docs.litellm.ai/docs/providers
# Examples: anthropic/claude-sonnet-4-5-20250929, gpt-4o, gpt-4o-mini
# OPTOPSY_MODEL=
# Data providers (add keys to enable live data fetching)
EODHD_API_KEY=
# Database — set to use PostgreSQL instead of local SQLite.
# When unset, defaults to sqlite at ~/.optopsy/chat.db.
# Railway auto-exposes this from a linked Postgres service.
# DATABASE_URL=postgresql://user:password@host:port/dbname
# Optional: override the base data directory (default: ~/.optopsy)
# Useful for production deployments (e.g. Railway volume mount)
# OPTOPSY_DATA_DIR=/data