From 69c7ca0925f78174e7fd0b9cb68ffad50b558d4c Mon Sep 17 00:00:00 2001 From: goulustis Date: Thu, 13 Nov 2025 14:40:11 +0800 Subject: [PATCH] remove assertion --- lang_agent/graphs/routing.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lang_agent/graphs/routing.py b/lang_agent/graphs/routing.py index 79bd9ce..06a9831 100644 --- a/lang_agent/graphs/routing.py +++ b/lang_agent/graphs/routing.py @@ -152,7 +152,6 @@ class RoutingGraph(GraphBase): logger.info("loading sys_prompt from txt") sys_fs = glob.glob(osp.join(self.config.sys_promp_json, "*.txt")) sys_fs = sorted([e for e in sys_fs if not ("optional" in e)]) - assert len(sys_fs) <= 3, "AT MOST 3 PROMPT!" self.prompt_dict = {} for sys_f in sys_fs: key = osp.basename(sys_f).split(".")[0]