From 7643f6677dc9d028054757c37b1b49818f442f6e Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Wed, 5 Apr 2023 04:37:33 -0400 Subject: [PATCH] Bugfix for Python3.7 --- llama_cpp/llama_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama_cpp/llama_types.py b/llama_cpp/llama_types.py index 3e9e803..b62ff1b 100644 --- a/llama_cpp/llama_types.py +++ b/llama_cpp/llama_types.py @@ -1,5 +1,5 @@ -from typing import List, Optional, Dict, Literal, Union -from typing_extensions import TypedDict, NotRequired +from typing import List, Optional, Dict, Union +from typing_extensions import TypedDict, NotRequired, Literal class EmbeddingUsage(TypedDict):