mirror of
https://github.com/coalaura/whiskr.git
synced 2025-09-08 17:06:42 +00:00
27 lines
817 B
YAML
27 lines
817 B
YAML
# enable verbose logging and diagnostics
|
|
debug: false
|
|
|
|
tokens:
|
|
# server secret for signing auth tokens; auto-generated if empty
|
|
secret: ""
|
|
# openrouter.ai api token (required)
|
|
openrouter: ""
|
|
# exa search api token (optional; used by search tools)
|
|
exa: ""
|
|
# github api token (optional; used by search tools)
|
|
github: ""
|
|
|
|
settings:
|
|
# normalize unicode in assistant output (optional; default: true)
|
|
cleanup: true
|
|
# model used to generate titles (needs to have structured output support; default: google/gemini-2.5-flash-lite)
|
|
title-model: google/gemini-2.5-flash-lite
|
|
|
|
authentication:
|
|
# require login with username and password
|
|
enabled: false
|
|
# list of users with bcrypt password hashes
|
|
users:
|
|
- username: admin
|
|
password: $2a$12$eH6Du2grC7aOUDmff2SrC.yKPWea/fq0d76c3JsvhGxhGCEOnWTRy
|