From 737a80aa393c33ba34d480d35242482ddf00ad0b Mon Sep 17 00:00:00 2001 From: goulustis Date: Wed, 18 Mar 2026 20:44:28 +0800 Subject: [PATCH] llm name fix --- lang_agent/front_api/build_server_utils.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lang_agent/front_api/build_server_utils.py b/lang_agent/front_api/build_server_utils.py index 71f8813..289630c 100644 --- a/lang_agent/front_api/build_server_utils.py +++ b/lang_agent/front_api/build_server_utils.py @@ -77,6 +77,8 @@ def build_route( cmd_opt = [ "--pipeline.pipeline-id", pipeline_id, + "--pipeline.llm-name", + llm_name, "route", # ------------ "--llm-name", llm_name, @@ -125,6 +127,8 @@ def build_react( cmd_opt = [ "--pipeline.pipeline-id", pipeline_id, + "--pipeline.llm-name", + llm_name, "react", # ------------ "--llm-name", llm_name, @@ -171,6 +175,8 @@ def build_deep_agent( cmd_opt = [ "--pipeline.pipeline-id", pipeline_id, + "--pipeline.llm-name", + llm_name, "deepagent", "--llm-name", llm_name,