-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
34 lines (28 loc) · 1.98 KB
/
.env.example
File metadata and controls
34 lines (28 loc) · 1.98 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
# ═══════════════════════════════════════════════════════════════
# Toonic Server — Environment Configuration
# Copy to .env and fill in your values: cp .env.example .env
# ═══════════════════════════════════════════════════════════════
# ── LLM Provider ──────────────────────────────────────────────
LLM_API_KEY=sk-or-v1-your-openrouter-key-here
LLM_MODEL=google/gemini-3-flash-preview
LLM_BASE_URL=https://openrouter.ai/api/v1
# Aliases used by litellm / router
OPENROUTER_API_KEY=${LLM_API_KEY}
# ── Server ────────────────────────────────────────────────────
TOONIC_HOST=0.0.0.0
TOONIC_PORT=8900
TOONIC_LOG_LEVEL=INFO
TOONIC_INTERVAL=30
TOONIC_GOAL="analyze project structure and suggest improvements"
# ── RTSP Cameras ──────────────────────────────────────────────
# Real camera (Hikvision / Dahua / generic)
RTSP_CAM1=rtsp://admin:123456@192.168.188.146:554/h264Preview_01_main
# Docker test streams (started by docker compose)
RTSP_TEST_CAM1=rtsp://localhost:8554/test-cam1
RTSP_TEST_CAM2=rtsp://localhost:8554/test-cam2
RTSP_TEST_AUDIO=rtsp://localhost:8554/test-audio
# ── Database (conversation history) ──────────────────────────
TOONIC_DB_PATH=./toonic_history.db
TOONIC_HISTORY_ENABLED=true
# ── Docker ────────────────────────────────────────────────────
COMPOSE_PROJECT_NAME=toonic