From e10af30cf1daec7f0717cc87b1cc09fa3cfd9f12 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Thu, 22 Feb 2024 03:27:28 -0500 Subject: [PATCH] fix: TypeAlias import error --- llama_cpp/llama_cpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_cpp/llama_cpp.py b/llama_cpp/llama_cpp.py index 1939190..3da131e 100644 --- a/llama_cpp/llama_cpp.py +++ b/llama_cpp/llama_cpp.py @@ -15,9 +15,9 @@ from typing import ( Optional, TYPE_CHECKING, TypeVar, - TypeAlias, Generic, ) +from typing_extensions import TypeAlias # Load the library