langchain_core.utils.function_calling
.convert_python_function_to_openai_function¶
- langchain_core.utils.function_calling.convert_python_function_to_openai_function(function: Callable) FunctionDescription [source]¶
自 0.1.16 版本以来已弃用: 使用
langchain_core.utils.function_calling.convert_to_openai_function()
代替。将 Python 函数转换为与 OpenAI 函数调用 API 兼容的字典。
- 假设Python函数具有类型提示和带有描述的文档字符串。如果
文档字符串包含 Google Python 风格的参数描述,则这些描述也将包括在内。
- 参数
function (Callable) – 要转换的 Python 函数。
- 返回
OpenAI 函数描述。
- 返回类型