索引
AsyncBaseTool #
基础类: BaseTool
基础级别的工具类,向后兼容旧版工具规范,同时支持异步操作。
Source code in llama-index-core/llama_index/core/tools/types.py
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
|
调用
abstractmethod
#
call(input: Any) -> ToolOutput
这是工具开发者应该实现的方法。
Source code in llama-index-core/llama_index/core/tools/types.py
176 177 178 179 180 |
|
acall
abstractmethod
async
#
acall(input: Any) -> ToolOutput
这是call方法的异步版本。 工具开发者也应实现一个异步兼容的版本。
Source code in llama-index-core/llama_index/core/tools/types.py
182 183 184 185 186 187 188 |
|
BaseToolAsyncAdapter #
基础类: AsyncBaseTool
适配器类,允许将同步工具用作异步工具。
Source code in llama-index-core/llama_index/core/tools/types.py
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
|
基础工具 #
基类: DispatcherSpanMixin
Source code in llama-index-core/llama_index/core/tools/types.py
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
|
to_langchain_tool #
to_langchain_tool(**langchain_tool_kwargs: Any) -> Tool
转换为langchain工具。
Source code in llama-index-core/llama_index/core/tools/types.py
136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
|
to_langchain_structured_tool #
to_langchain_structured_tool(**langchain_tool_kwargs: Any) -> StructuredTool
转换为langchain结构化工具。
Source code in llama-index-core/llama_index/core/tools/types.py
151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
|
工具元数据
dataclass
#
工具元数据(描述: 字符串, 名称: 可选[字符串] = 无, 函数模式: 可选[类型[pydantic.main.基础模型]] = <类>, 直接返回: 布尔值 = 假)
参数:
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
description
|
str
|
|
required |
name
|
str | None
|
|
None
|
fn_schema
|
Type[BaseModel] | None
|
|
<class 'llama_index.core.tools.types.DefaultToolFnSchema'>
|
return_direct
|
bool
|
|
False
|
Source code in llama-index-core/llama_index/core/tools/types.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
|
get_name #
get_name() -> str
获取名称。
Source code in llama-index-core/llama_index/core/tools/types.py
54 55 56 57 58 |
|
to_openai_function #
to_openai_function() -> Dict[str, Any]
已弃用,由to_openai_tool
替代。
模型生成的应调用函数的名称和参数。
Source code in llama-index-core/llama_index/core/tools/types.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
to_openai_tool #
to_openai_tool(skip_length_check: bool = False) -> Dict[str, Any]
转至OpenAI工具。
Source code in llama-index-core/llama_index/core/tools/types.py
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
|
工具输出 #
基类: BaseModel
工具输出。
参数:
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
content
|
str
|
|
required |
tool_name
|
str
|
|
required |
raw_input
|
Dict[str, Any]
|
|
required |
raw_output
|
Any
|
|
required |
is_error
|
bool
|
|
False
|
Source code in llama-index-core/llama_index/core/tools/types.py
92 93 94 95 96 97 98 99 100 101 102 103 |
|