langchain_core.tools.render_text_description

langchain_core.tools.render_text_description(tools: List[BaseTool]) str[source]

将工具名称和描述以纯文本方式呈现。

参数

tools (List[BaseTool]) – 要呈现的工具。

返回

呈现的文本。

返回类型

str

输出格式为

search: This tool is used for search
calculator: This tool is used for math

使用 render_text_description 的示例