-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
31 lines (24 loc) · 779 Bytes
/
config.yaml
File metadata and controls
31 lines (24 loc) · 779 Bytes
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
29
30
31
# LLM Debugger Configuration
# Enable/disable request logging (proxy still works when disabled)
enabled: true
# Environment variables loaded into process.env
env: {}
# Routes to ignore (not proxied, not logged)
# Supports glob patterns
ignore_routes:
- /favicon.ico
- /.well-known/*
- /robots.txt
# Routes to hide from viewer UI (still logged)
# Supports glob patterns
hide_from_viewer:
- /v1/models
- /cdn-cgi/**
# Editor command for 'config edit' (e.g. "code", "vim", "nano")
# Falls back to $EDITOR env var, then platform default
# editor: code
# Default alias for root proxy requests (optional)
default_alias: null
# Proxy aliases: alias: { url: "https://...", headers: { Header: "value" } }
# Use /__proxy__/<alias> to route to an alias target.
aliases: {}