From e6b121eddd490c013e788ae8337b63d4eee5f8cf Mon Sep 17 00:00:00 2001 From: zeelrupapara Date: Sun, 28 Jul 2024 13:24:43 +0530 Subject: [PATCH] fix: update name of toolcallfunction parameter --- ollama/_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ollama/_types.py b/ollama/_types.py index 7dcf9c5b..243b27b2 100644 --- a/ollama/_types.py +++ b/ollama/_types.py @@ -61,7 +61,7 @@ class ToolCallFunction(TypedDict): name: str 'Name of the function.' - args: NotRequired[Mapping[str, Any]] + arguments: NotRequired[Mapping[str, Any]] 'Arguments of the function.'