Update llama_types.py (#849)

Minor typo fix, funcion -> function
This commit is contained in:
Adam Katora 2023-11-01 18:50:11 -04:00 committed by GitHub
parent bdf5254658
commit 25cb710281
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -169,4 +169,4 @@ class ChatCompletionRequestMessage(TypedDict):
role: Literal["assistant", "user", "system", "function"] role: Literal["assistant", "user", "system", "function"]
content: Optional[str] content: Optional[str]
name: NotRequired[str] name: NotRequired[str]
funcion_call: NotRequired[ChatCompletionFunctionCall] function_call: NotRequired[ChatCompletionFunctionCall]