From 9ff9cdd7fc6cc94fefae15cae97f2b38ee358d14 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Mon, 1 May 2023 15:11:15 -0400 Subject: [PATCH] Fix import error --- llama_cpp/server/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama_cpp/server/app.py b/llama_cpp/server/app.py index 92b023c..640dd3f 100644 --- a/llama_cpp/server/app.py +++ b/llama_cpp/server/app.py @@ -1,8 +1,8 @@ import os import json from threading import Lock -from typing import List, Optional, Literal, Union, Iterator, Dict -from typing_extensions import TypedDict +from typing import List, Optional, Union, Iterator, Dict +from typing_extensions import TypedDict, Literal import llama_cpp