-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 922 Bytes
/
Copy path.env.example
File metadata and controls
28 lines (22 loc) · 922 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
# Required
SLACK_BOT_TOKEN=
SLACK_APP_TOKEN=
SLACK_BOT_USER_NAME=
# Required for /image image generation (Gemini "Nano Banana 2") and for the
# Gemini chat backend if you flip to it below.
GEMINI_API_KEY=
# --- Chat backend --------------------------------------------------------
# Which LLM powers Data's conversation. "ollama" (default) talks to a local
# Ollama instance; "gemini" uses the same GEMINI_API_KEY as image generation.
# CHAT_BACKEND=ollama
# Ollama settings (used when CHAT_BACKEND=ollama)
# OLLAMA_HOST=http://localhost:11434
# OLLAMA_MODEL=gemma4:26b-a4b-it-qat
# Gemini settings (used when CHAT_BACKEND=gemini)
# GEMINI_CHAT_MODEL=gemini-3-flash-latest
# Optional - override the default Gemini image model
# GEMINI_IMAGE_MODEL=gemini-3.1-flash-image
# --- Other ---------------------------------------------------------------
BOT_PERSONALITY=
REDIS_URL=redis://localhost:6379
MEMORY_TTL_HOURS=24