~bigbes/lethe

ref: 53221c915cf9f4ce373ee0192e58898d660bdbfd lethe/config.example.yaml -rw-r--r-- 519 bytes
53221c91 — Eugene Blikh feat(cmd): wire server with /healthz /readyz /metrics + authed /api/v1 a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
server:
  bind: "127.0.0.1:8080"
  shutdown_grace: 10s

database:
  path: "./lethe.db"
  busy_timeout: 5s

auth:
  allowed_users: ["bigbes"]
  admins: []
  forward_auth:
    enabled: true
    user_header: "Remote-User"
  oidc:
    enabled: false
    issuer: "https://auth.example.com"
    audience: "lethe"
    username_claim: "preferred_username"

logging:
  level: "info"
  format: "tint"   # tint | json

ingest:
  max_body_bytes: 16777216        # 16 MiB
  max_turn_content_bytes: 4194304 # 4 MiB
  chunk_size: 500