fix: typo "conversatione" → "conversation" in 20- examples

This commit is contained in:
Paul Kompfner
2026-03-19 15:38:38 -04:00
parent ea1534f9f8
commit dafbb2eb66
4 changed files with 4 additions and 4 deletions

View File

@@ -116,7 +116,7 @@ weather_function = FunctionSchema(
save_conversation_function = FunctionSchema(
name="save_conversation",
description="Save the current conversatione. Use this function to persist the current conversation to external storage.",
description="Save the current conversation. Use this function to persist the current conversation to external storage.",
properties={},
required=[],
)

View File

@@ -116,7 +116,7 @@ weather_function = FunctionSchema(
save_conversation_function = FunctionSchema(
name="save_conversation",
description="Save the current conversatione. Use this function to persist the current conversation to external storage.",
description="Save the current conversation. Use this function to persist the current conversation to external storage.",
properties={},
required=[],
)

View File

@@ -119,7 +119,7 @@ tools = [
{
"type": "function",
"name": "save_conversation",
"description": "Save the current conversatione. Use this function to persist the current conversation to external storage.",
"description": "Save the current conversation. Use this function to persist the current conversation to external storage.",
"parameters": {
"type": "object",
"properties": {},

View File

@@ -125,7 +125,7 @@ tools = ToolsSchema(
),
FunctionSchema(
name="save_conversation",
description="Save the current conversatione. Use this function to persist the current conversation to external storage.",
description="Save the current conversation. Use this function to persist the current conversation to external storage.",
properties={},
required=[],
),