fix: refine docstring for add_llm_tools method in Context class

This commit is contained in:
Soulter
2025-10-29 20:16:27 +08:00
parent a2be155b8e
commit 0d850d7b22
+1 -1
View File
@@ -257,7 +257,7 @@ class Context:
return False
def add_llm_tools(self, *tools: FunctionTool) -> None:
"""添加一个 LLM 工具。"""
"""添加 LLM 工具。"""
for tool in tools:
self.provider_manager.llm_tools.func_list.append(tool)