fix: use singleton

pull/1013/head
Alex 4 months ago
parent 483f8eb690
commit ce56a414e0

@ -1,9 +1,22 @@
from application.llm.base import BaseLLM from application.llm.base import BaseLLM
from application.core.settings import settings from application.core.settings import settings
class LlamaSingleton:
_instances = {}
class LlamaCpp(BaseLLM): @classmethod
def get_instance(cls, llm_name):
if llm_name not in cls._instances:
try:
from llama_cpp import Llama
except ImportError:
raise ImportError(
"Please install llama_cpp using pip install llama-cpp-python"
)
cls._instances[llm_name] = Llama(model_path=llm_name, n_ctx=2048)
return cls._instances[llm_name]
class LlamaCpp(BaseLLM):
def __init__( def __init__(
self, self,
api_key=None, api_key=None,
@ -12,41 +25,23 @@ class LlamaCpp(BaseLLM):
*args, *args,
**kwargs, **kwargs,
): ):
global llama
try:
from llama_cpp import Llama
except ImportError:
raise ImportError(
"Please install llama_cpp using pip install llama-cpp-python"
)
super().__init__(*args, **kwargs) super().__init__(*args, **kwargs)
self.api_key = api_key self.api_key = api_key
self.user_api_key = user_api_key self.user_api_key = user_api_key
llama = Llama(model_path=llm_name, n_ctx=2048) self.llama = LlamaSingleton.get_instance(llm_name)
def _raw_gen(self, baseself, model, messages, stream=False, **kwargs): def _raw_gen(self, baseself, model, messages, stream=False, **kwargs):
context = messages[0]["content"] context = messages[0]["content"]
user_question = messages[-1]["content"] user_question = messages[-1]["content"]
prompt = f"### Instruction \n {user_question} \n ### Context \n {context} \n ### Answer \n" prompt = f"### Instruction \n {user_question} \n ### Context \n {context} \n ### Answer \n"
result = self.llama(prompt, max_tokens=150, echo=False)
result = llama(prompt, max_tokens=150, echo=False)
# import sys
# print(result['choices'][0]['text'].split('### Answer \n')[-1], file=sys.stderr)
return result["choices"][0]["text"].split("### Answer \n")[-1] return result["choices"][0]["text"].split("### Answer \n")[-1]
def _raw_gen_stream(self, baseself, model, messages, stream=True, **kwargs): def _raw_gen_stream(self, baseself, model, messages, stream=True, **kwargs):
context = messages[0]["content"] context = messages[0]["content"]
user_question = messages[-1]["content"] user_question = messages[-1]["content"]
prompt = f"### Instruction \n {user_question} \n ### Context \n {context} \n ### Answer \n" prompt = f"### Instruction \n {user_question} \n ### Context \n {context} \n ### Answer \n"
result = self.llama(prompt, max_tokens=150, echo=False, stream=stream)
result = llama(prompt, max_tokens=150, echo=False, stream=stream)
# import sys
# print(list(result), file=sys.stderr)
for item in result: for item in result:
for choice in item["choices"]: for choice in item["choices"]:
yield choice["text"] yield choice["text"]
Loading…
Cancel
Save