From 4a713190b71a6c0f85e8edbb93df82dba3cbbdd1 Mon Sep 17 00:00:00 2001 From: goulustis Date: Tue, 3 Mar 2026 19:40:00 +0800 Subject: [PATCH] add pipeline registry config --- configs/pipeline_registry.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 configs/pipeline_registry.json diff --git a/configs/pipeline_registry.json b/configs/pipeline_registry.json new file mode 100644 index 0000000..4ec805b --- /dev/null +++ b/configs/pipeline_registry.json @@ -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" + ] + } + } +} +