tooluniverse.agentic_tool 模块¶
- class tooluniverse.agentic_tool.AgenticTool[源代码]¶
基类:
BaseTool基于 JSON 定义配置(包含提示和输入参数)的通用大语言模型(LLM)提示封装器。
- STREAM_FLAG_KEY = '_tooluniverse_stream'¶
- static has_any_api_keys()[源代码]¶
检查所有支持的 API 类型中是否有可用的 API 密钥。
- 返回值
bool: True if at least one API type has all required keys, False otherwise
- run(arguments, stream_callback=None)[源代码]¶
执行该工具。
默认的 BaseTool 实现接受一个可选的参数映射,以与大多数具体工具实现保持一致,这些工具通常期望输入为一个字典。
- 参数:
arguments (
dict, optional) – 工具专用参数stream_callback (
callable, optional) – 用于流式响应的回调use_cache (
bool, optional) – 是否启用结果缓存validate (
bool, optional) – 是否已执行参数验证
备注
这些附加参数(stream_callback、use_cache、validate)由 run_one_function() 传递,用于提供有关执行的上下文。工具可以利用这些参数进行优化或特殊处理。
为了向后兼容,不接受这些参数的工具仍然可以正常运行——它们只会接收到 arguments 参数。