add key type

This commit is contained in:
2025-10-29 14:09:14 +08:00
parent 6aa1a362c1
commit 23535e3b8f

View File

@@ -120,7 +120,7 @@ class RoutingGraph(GraphBase):
self.tool_model = create_agent(self.llm, tool_manager.get_list_langchain_tools(), checkpointer=self.memory)
with open(self.config.sys_promp_json , "r") as f:
self.prompt_dict = commentjson.load(f)
self.prompt_dict:Dict[str, str] = commentjson.load(f)
def _router_call(self, state:State):