From 920d826503b3b20f2ca0759c562a99eb19215d41 Mon Sep 17 00:00:00 2001 From: Adam Katora Date: Sun, 29 Oct 2023 13:47:21 -0400 Subject: [PATCH] Update llama_types.py 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 6ee7ef914..a64033ea0 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]