Baseline for the Kong replacement on api.riotpiao.com. Brings the working tree under version control for the first time: gateway source, the task board that drives the agent runs, test fixtures, and K8s manifests. Anchor the gateway ignore rule to the repo root. Unanchored, "gateway" also matched the cmd/gateway/ source directory, so the program entrypoint was excluded from every commit. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
28 lines
652 B
YAML
28 lines
652 B
YAML
routes:
|
|
- name: reasoning-chat
|
|
upstream:
|
|
address: reasoning-predictor.llm-serving:80
|
|
connectTimeout: "10s"
|
|
readTimeout: "1h"
|
|
writeTimeout: "1h"
|
|
maxBodySize: 10485760
|
|
authRequired: true
|
|
|
|
- name: ornith-chat
|
|
upstream:
|
|
address: ornith-frontend.llm-serving:80
|
|
connectTimeout: "5s"
|
|
readTimeout: "10m"
|
|
writeTimeout: "3m"
|
|
maxBodySize: 5242880
|
|
authRequired: false
|
|
|
|
- name: embeddings
|
|
upstream:
|
|
address: embedding-worker.llm-serving:80
|
|
connectTimeout: "5s"
|
|
readTimeout: "30m"
|
|
writeTimeout: "2m"
|
|
maxBodySize: 5242880
|
|
authRequired: true
|