专用工具¶
Configuration File: special_tools.json
Tool Type: Local
Tools Count: 3
此页面包含 special_tools.json 配置文件中定义的所有工具。
可用工具¶
**CallAgent**(类型:SpecialTool)¶
向智能体提供解决方案计划,并让其解决问题。解决方案计划应反映一个 di…
CallAgent 工具规范
工具信息:
名称:
CallAgent类型:
SpecialTool描述:提供一个解决方案计划给智能体,让其解决问题。解决方案计划应体现出一种独特的方法、途径或观点来解决所提出的问题。多次调用这些函数,每个解决方案计划应从问题的不同方面开始,例如基因、表型、疾病或药物等。CallAgent将根据计划完成任务,因此只需提供计划,而不要提供未经验证的信息。
参数:
solution(string) (required) A feasible and concise solution plan that address the question.
示例用法:
query = {
"name": "CallAgent",
"arguments": {
"solution": "example_value"
}
}
result = tu.run(query)
**完成**(类型:SpecialTool)¶
指明多步骤推理的结束。
完成工具规格
工具信息:
名称:
完成类型:
SpecialTool描述:指示多步骤推理的结束。
参数:
无需参数。
示例用法:
query = {
"name": "Finish",
"arguments": {
}
}
result = tu.run(query)
ToolUniverse_get_usage_tips (Type: UsageTipsTool)¶
Return concise usage tips for the ToolUniverse SDK. Use topic=’all’ (default) to get all tips, or…
ToolUniverse_get_usage_tips tool specification
工具信息:
Name:
ToolUniverse_get_usage_tipsType:
UsageTipsToolDescription: Return concise usage tips for the ToolUniverse SDK. Use topic=’all’ (default) to get all tips, or specify a topic: ‘loading’, ‘running’, ‘searching’, ‘workspace’. No API keys or network access required — always available offline.
参数:
topic(string) (optional) Topic to filter tips. One of: ‘loading’, ‘running’, ‘searching’, ‘workspace’, or ‘all’ (default) to return every topic.
示例用法:
query = {
"name": "ToolUniverse_get_usage_tips",
"arguments": {
}
}
result = tu.run(query)