add pipeline registry config

This commit is contained in:
2026-03-03 19:40:00 +08:00
parent bda75d2558
commit 4a713190b7

View File

@@ -0,0 +1,32 @@
{
"routes": {
"default": {
"enabled": true,
"config_file": null,
"prompt_pipeline_id": "xiaozhan"
},
"xiaozhan": {
"enabled": true,
"config_file": "configs/pipelines/xiaozhan.yaml",
"prompt_pipeline_id": "xiaozhan"
},
"blueberry": {
"enabled": true,
"config_file": "configs/pipelines/blueberry.yaml",
"prompt_pipeline_id": "react",
"overrides": {
"llm_name": "qwen-plus"
}
}
},
"api_keys": {
"example-key-1": {
"default_route_id": "default",
"allowed_route_ids": [
"default",
"xiaozhan"
]
}
}
}