From 25cb710281aaab55c27bb84b66d00e7509cf70d3 Mon Sep 17 00:00:00 2001 From: Adam Katora Date: Wed, 1 Nov 2023 18:50:11 -0400 Subject: [PATCH] Update llama_types.py (#849) Minor typo fix, funcion -> function --- llama_cpp/llama_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_cpp/llama_types.py b/llama_cpp/llama_types.py index 6ee7ef9..a64033e 100644 --- a/llama_cpp/llama_types.py +++ b/llama_cpp/llama_types.py @@ -169,4 +169,4 @@ class ChatCompletionRequestMessage(TypedDict): role: Literal["assistant", "user", "system", "function"] content: Optional[str] name: NotRequired[str] - funcion_call: NotRequired[ChatCompletionFunctionCall] + function_call: NotRequired[ChatCompletionFunctionCall]