38 lines
898 B
Plaintext
38 lines
898 B
Plaintext
# LLM Provider Selection
|
|
# Options: "deepseek" or "ollama"
|
|
LLM_PROVIDER=ollama
|
|
|
|
# DeepSeek LLM Configuration (if using DeepSeek)
|
|
DEEPSEEK_API_KEY=your_deepseek_api_key
|
|
DEEPSEEK_BASE_URL=https://api.deepseek.com
|
|
DEEPSEEK_MODEL=deepseek-chat
|
|
|
|
# Ollama LLM Configuration (if using Ollama)
|
|
OLLAMA_BASE_URL=http://localhost:11434
|
|
OLLAMA_MODEL=llama3.2
|
|
|
|
# LLM Settings
|
|
TEMPERATURE=0.2
|
|
|
|
# TMDB API Configuration
|
|
TMDB_API_KEY=your_tmdb_api_key
|
|
TMDB_BASE_URL=https://api.themoviedb.org/3
|
|
|
|
# Storage Configuration
|
|
MEMORY_FILE=memory.json
|
|
|
|
# qBittorrent Configuration
|
|
QBIT_HOST=http://192.168.178.47:30024
|
|
QBIT_USER=admin
|
|
QBIT_PASS=adminadmin
|
|
|
|
# Security Configuration
|
|
MAX_TOOL_ITERATIONS=10
|
|
REQUEST_TIMEOUT=30
|
|
|
|
# Memory Configuration
|
|
# Number of previous messages to include in context (default: 10)
|
|
# Higher = more context but slower/more expensive
|
|
# Lower = less context but faster
|
|
MAX_HISTORY_MESSAGES=10
|