lollms-webui/backends/gpt_j_a/__init__.py

66 lines
2.6 KiB
Python
Raw Normal View History

2023-05-11 13:09:34 +00:00
######
# Project : GPT4ALL-UI
# File : backend.py
# Author : ParisNeo with the help of the community
2023-05-14 19:13:38 +00:00
# Underlying backend : Abdeladim's pygptj backend
2023-05-11 13:09:34 +00:00
# Supported by Nomic-AI
# Licence : Apache 2.0
# Description :
# This is an interface class for GPT4All-ui backends.
######
from pathlib import Path
from typing import Callable
2023-05-14 00:29:09 +00:00
from pygptj.model import Model
from gpt4all_api.backend import GPTBackend
2023-05-11 13:09:34 +00:00
__author__ = "parisneo"
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
__copyright__ = "Copyright 2023, "
__license__ = "Apache 2.0"
2023-05-14 00:29:09 +00:00
backend_name = "GptJ"
2023-05-11 13:09:34 +00:00
2023-05-14 00:29:09 +00:00
class GptJ(GPTBackend):
2023-05-11 13:09:34 +00:00
file_extension='*.bin'
def __init__(self, config:dict) -> None:
2023-05-14 00:29:09 +00:00
"""Builds a LLAMACPP backend
2023-05-11 13:09:34 +00:00
Args:
config (dict): The configuration file
"""
super().__init__(config, False)
self.model = Model(
2023-05-14 00:36:06 +00:00
model_path=f"./models/gpt_j/{self.config['model']}",
prompt_context="", prompt_prefix="", prompt_suffix=""
2023-05-11 13:09:34 +00:00
)
def generate(self,
prompt:str,
n_predict: int = 128,
new_text_callback: Callable[[str], None] = bool,
verbose: bool = False,
**gpt_params ):
"""Generates text out of a prompt
Args:
prompt (str): The prompt to use for generation
n_predict (int, optional): Number of tokens to prodict. Defaults to 128.
new_text_callback (Callable[[str], None], optional): A callback function that is called everytime a new text element is generated. Defaults to None.
verbose (bool, optional): If true, the code will spit many informations about the generation process. Defaults to False.
"""
try:
self.model.reset()
for tok in self.model.generate(prompt,
n_predict=n_predict,
temp=self.config['temperature'],
top_k=self.config['top_k'],
top_p=self.config['top_p'],
2023-05-14 00:36:06 +00:00
#repeat_penalty=self.config['repeat_penalty'],
#repeat_last_n = self.config['repeat_last_n'],
2023-05-11 13:09:34 +00:00
n_threads=self.config['n_threads'],
):
if not new_text_callback(tok):
return
except Exception as ex:
2023-05-14 00:29:09 +00:00
print(ex)