Fix Dep Recommendation (#16793)

Tools are different than functions
This commit is contained in:
William FH 2024-01-30 09:40:28 -08:00 committed by GitHub
parent b0347f3e2b
commit 881dc28d2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -89,7 +89,7 @@ def convert_pydantic_to_openai_function(
@deprecated(
"0.1.16",
alternative="langchain_core.utils.function_calling.convert_to_openai_function()",
alternative="langchain_core.utils.function_calling.convert_to_openai_tool()",
removal="0.2.0",
)
def convert_pydantic_to_openai_tool(
@ -253,7 +253,7 @@ def format_tool_to_openai_function(tool: BaseTool) -> FunctionDescription:
@deprecated(
"0.1.16",
alternative="langchain_core.utils.function_calling.convert_to_openai_function()",
alternative="langchain_core.utils.function_calling.convert_to_openai_tool()",
removal="0.2.0",
)
def format_tool_to_openai_tool(tool: BaseTool) -> ToolDescription: