From cf1d3d0ba113a24b377543f0ba8537641568696b Mon Sep 17 00:00:00 2001 From: martin legrand Date: Sat, 29 Mar 2025 13:34:16 +0100 Subject: [PATCH] fix : llama_cpp not defined --- server/sources/llamacpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sources/llamacpp.py b/server/sources/llamacpp.py index e7a7b66..1e4aede 100644 --- a/server/sources/llamacpp.py +++ b/server/sources/llamacpp.py @@ -1,10 +1,10 @@ from .generator import GeneratorLLM +from llama_cpp import Llama class LlamacppLLM(GeneratorLLM): def __init__(self): - from llama_cpp import Llama """ Handle generation using llama.cpp """