-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (16 loc) · 775 Bytes
/
.env.example
File metadata and controls
23 lines (16 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# .env.example
# Environment variables for the log-analyzer tool
# Default Ollama model to use for analysis (e.g., llama3:8b)
DEFAULT_MODEL=llama3:8b
# Default Ollama model to use for text embeddings (e.g., qwen3-embedding:4b)
EMBEDDING_MODEL=qwen3-embedding:4b
# Base URL for Ollama service (default: http://localhost:11434)
OLLAMA_BASE_URL=http://localhost:11434
# Gotify server URL (e.g., http://your-gotify-server:8080)
GOTIFY_SERVER_URL=http://localhost:8080
# Gotify token for authentication (App Token required for message pushing)
GOTIFY_TOKEN=your-gotify-token
# Optional: Set to true to enable Gotify notifications
ENABLE_GOTIFY_NOTIFICATIONS=true
# Optional: Set to true to force re-indexing of log files even if embeddings already exist
FORCE_REINDEX=false