专家反馈工具¶
配置文件: remote_tools/expert_feedback_tools.json 工具类型: 远程 工具数量: 6
此页面包含在``expert_feedback_tools.json``配置文件中定义的所有工具。
可用工具¶
**consult_human_expert**(类型:RemoteTool)¶
请咨询专业人士处理需要人类判断的复杂科学问题。本工具提交…
consult_human_expert 工具规范
工具信息:
名称:
consult_human_expert类型:
RemoteTool描述:对于需要人类判断的复杂科学问题,请咨询人类专家。此工具将问题提交给人类专家,他们可以提供临床决策支持、分析验证、治疗建议以及专业意见。
参数:
``question``(字符串)(必填)需要专家咨询的科学问题或案例
specialty(string) (required) Area of expertise needed (e.g., ‘cardiology’, ‘oncology’, ‘pharmacology’, ‘neurology’, ‘emergency’, ‘general’)priority(string) (required) Request priority levelcontext(string) (required) Additional context or background information about the casetimeout_minutes(integer) (required) How long to wait for expert response (default: 5 minutes)
示例用法:
query = {
"name": "consult_human_expert",
"arguments": {
"question": "example_value",
"specialty": "example_value",
"priority": "example_value",
"context": "example_value",
"timeout_minutes": 10
}
}
result = tu.run(query)
**get_expert_response**(类型:RemoteTool)¶
检查是否有针对先前咨询请求的专家回复可用。使用此功能以检索…
get_expert_response 工具规格说明
工具信息:
名称:
get_expert_response类型:
RemoteTool描述:检查是否有针对先前咨询请求的专家回复。完成初次咨询后,可使用此功能检索回复内容。
参数:
``request_id``(字符串)(必填)待查询的专家咨询请求的ID
示例用法:
query = {
"name": "get_expert_response",
"arguments": {
"request_id": "example_value"
}
}
result = tu.run(query)
**get_expert_status**(类型:RemoteTool)¶
获取人类专家系统的当前状态,包括可用性、待处理请求及系统…
get_expert_status 工具规格说明
工具信息:
名称:
get_expert_status类型:
RemoteTool描述:获取人工专家系统的当前状态,包括可用性、待处理请求和系统统计信息。
参数:
无需参数。
示例用法:
query = {
"name": "get_expert_status",
"arguments": {
}
}
result = tu.run(query)
**list_pending_expert_requests**(类型:RemoteTool)¶
列出所有待处理的专家咨询请求(供专家查看未解决的问题)。
list_pending_expert_requests 工具规范
工具信息:
名称:
list_pending_expert_requests类型:
RemoteTool描述:列出所有待处理的专家咨询请求(供专家查看未解决的问题)。
参数:
无需参数。
示例用法:
query = {
"name": "list_pending_expert_requests",
"arguments": {
}
}
result = tu.run(query)
**mcp_auto_loader_human_expert**(类型:RemoteTool)¶
自动发现并加载来自Human Expert MCP服务器的所有工具。可注册已发现的工具…
mcp_auto_loader_human_expert 工具规范
工具信息:
名称:
mcp_auto_loader_human_expert类型:
RemoteTool描述:自动发现并加载来自 Human Expert MCP 服务器的所有工具。可将发现的工具注册为独立的 ToolUniverse 工具,用于在需要人类判断的复杂科学决策中提供专家咨询。
参数:
无需参数。
示例用法:
query = {
"name": "mcp_auto_loader_human_expert",
"arguments": {
}
}
result = tu.run(query)
**submit_expert_response**(类型:RemoteTool)¶
提交专家对咨询请求的响应(供人类专家通过专家界面使用)
提交专家响应工具规范
工具信息:
名称:
submit_expert_response类型:
RemoteTool描述:提交专家对咨询请求的回复(供人类专家通过专家界面使用)。
参数:
示例用法:
query = {
"name": "submit_expert_response",
"arguments": {
"request_id": "example_value",
"response": "example_value"
}
}
result = tu.run(query)