81e9597777
Adds llama3.2:1b as local fallback provider for when primary Anthropic API is unavailable. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
31 lines
505 B
YAML
31 lines
505 B
YAML
# Flynn Configuration
|
|
# Copy to ~/.config/flynn/config.yaml and customize
|
|
|
|
telegram:
|
|
bot_token: ${FLYNN_TELEGRAM_TOKEN}
|
|
allowed_chat_ids: [] # Add your Telegram chat ID
|
|
|
|
server:
|
|
tailscale_only: true
|
|
localhost: true
|
|
port: 18800
|
|
|
|
models:
|
|
default:
|
|
provider: anthropic
|
|
model: claude-sonnet-4-20250514
|
|
local:
|
|
provider: ollama
|
|
model: llama3.2:1b
|
|
fallback_chain: [local]
|
|
|
|
hooks:
|
|
confirm:
|
|
- shell.*
|
|
- file.write
|
|
log:
|
|
- web.*
|
|
- file.read
|
|
silent:
|
|
- notify
|