-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (33 loc) · 2.42 KB
/
.env.example
File metadata and controls
42 lines (33 loc) · 2.42 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
35
36
37
38
39
40
41
42
# ──────────────────────────────────────────────
# Discord
# ──────────────────────────────────────────────
DISCORD_TOKEN=your_discord_bot_token
ADMIN_USER_IDS= # Comma-separated Discord user IDs
# ──────────────────────────────────────────────
# LLM Provider
# Supported: openai | anthropic | openrouter | openai-compatible
# ──────────────────────────────────────────────
LLM_PROVIDER=openai
LLM_API_KEY=your_api_key
LLM_MODEL=gpt-4o
# LLM_BASE_URL= # Only for openai-compatible provider
# ──────────────────────────────────────────────
# Security Observer (optional, falls back to main LLM)
# ──────────────────────────────────────────────
# SECURITY_LLM_PROVIDER=openai
# SECURITY_LLM_API_KEY=
# SECURITY_LLM_MODEL=gpt-4o-mini
# SECURITY_LLM_BASE_URL=
# SECURITY_ALERT_CHANNEL_ID= # Discord channel for security alerts
# ──────────────────────────────────────────────
# Database (optional, defaults to SQLite)
# ──────────────────────────────────────────────
# DATABASE_TYPE=sqlite # sqlite | postgres
# DATABASE_URL= # Required if DATABASE_TYPE=postgres
# POSTGRES_PASSWORD=vexai_secure_password # Used by docker-compose.postgres.yml
# ──────────────────────────────────────────────
# Web Search (optional)
# ──────────────────────────────────────────────
# SEARCH_PROVIDER=brave # brave | searxng
# SEARCH_API_KEY=your_brave_search_api_key
# SEARXNG_URL=http://localhost:8080 # Required if SEARCH_PROVIDER=searxng