3d5de06b44
AI-powered web app that recommends unwatched movies from a Jellyfin library based on natural language mood input. Jellyfin auth, modular LLM backend (Claude/OpenAI/Ollama), two-tier pre-filter + AI ranking, mobile-responsive dark theme UI with poster cards and deep links. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
419 B
Bash
14 lines
419 B
Bash
# Jellyfin connection
|
|
JELLYFIN_URL=http://192.168.5.254:8096
|
|
JELLYFIN_API_KEY=your-jellyfin-api-key-here
|
|
JELLYFIN_EXTERNAL_URL=https://jellyfin.internal.bondelie.net
|
|
|
|
# LLM provider: anthropic, openai, or ollama
|
|
LLM_PROVIDER=anthropic
|
|
LLM_API_KEY=your-api-key-here
|
|
LLM_MODEL=claude-sonnet-4-6
|
|
# LLM_BASE_URL=http://localhost:11434/v1 # uncomment for ollama
|
|
|
|
# App settings
|
|
SESSION_SECRET=generate-a-random-string-here
|