lollms-webui/bindings/binding_template/__init__.py

134 lines
4.4 KiB
Python
Raw Normal View History

2023-05-25 09:34:56 +00:00
######
# Project : GPT4ALL-UI
2023-05-25 21:24:14 +00:00
# File : binding.py
2023-05-25 09:34:56 +00:00
# Author : ParisNeo with the help of the community
2023-05-25 21:24:14 +00:00
# Underlying binding : Abdeladim's pygptj binding
2023-05-25 09:34:56 +00:00
# Supported by Nomic-AI
# license : Apache 2.0
# Description :
2023-05-25 21:24:14 +00:00
# This is an interface class for GPT4All-ui bindings.
2023-05-25 09:34:56 +00:00
2023-05-25 21:24:14 +00:00
# This binding is a wrapper to marella's binding
2023-05-25 09:34:56 +00:00
######
from pathlib import Path
from typing import Callable
2023-05-25 21:24:14 +00:00
from api.binding import LLMBinding
2023-05-25 09:34:56 +00:00
import yaml
2023-05-25 10:51:31 +00:00
from api.config import load_config
import re
2023-05-25 09:34:56 +00:00
__author__ = "parisneo"
2023-05-26 10:11:14 +00:00
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
2023-05-25 09:34:56 +00:00
__copyright__ = "Copyright 2023, "
__license__ = "Apache 2.0"
2023-05-25 21:24:14 +00:00
binding_name = "CustomBinding"
2023-05-25 09:34:56 +00:00
2023-05-25 21:24:14 +00:00
class CustomBinding(LLMBinding):
# Define what is the extension of the model files supported by your binding
2023-05-25 10:51:31 +00:00
# Only applicable for local models for remote models like gpt4 and others, you can keep it empty
# and reimplement your own list_models method
file_extension='*.bin'
2023-05-25 09:34:56 +00:00
def __init__(self, config:dict) -> None:
2023-05-25 21:24:14 +00:00
"""Builds a LLAMACPP binding
2023-05-25 09:34:56 +00:00
Args:
config (dict): The configuration file
"""
super().__init__(config, False)
2023-05-25 10:51:31 +00:00
# The local config can be used to store personal information that shouldn't be shared like chatgpt Key
# or other personal information
# This file is never commited to the repository as it is ignored by .gitignore
2023-05-25 14:40:28 +00:00
# You can remove this if you don't need custom local configurations
2023-05-25 10:51:31 +00:00
self._local_config_file_path = Path(__file__).parent/"config_local.yaml"
2023-05-25 14:40:28 +00:00
self.config = load_config(self._local_config_file_path)
2023-05-25 10:51:31 +00:00
# Do your initialization stuff
2023-05-25 09:34:56 +00:00
def tokenize(self, prompt):
"""
Tokenizes the given prompt using the model's tokenizer.
Args:
prompt (str): The input prompt to be tokenized.
Returns:
list: A list of tokens representing the tokenized prompt.
"""
2023-05-29 22:37:09 +00:00
return None
2023-05-25 09:34:56 +00:00
def detokenize(self, tokens_list):
"""
Detokenizes the given list of tokens using the model's tokenizer.
Args:
tokens_list (list): A list of tokens to be detokenized.
Returns:
str: The detokenized text as a string.
"""
2023-05-29 22:37:09 +00:00
return None
2023-05-25 09:34:56 +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:
output = ""
count = 0
2023-05-25 10:51:31 +00:00
generated_text = """
2023-05-25 21:24:14 +00:00
This is an empty binding that shows how you can build your own binding.
2023-05-29 22:37:09 +00:00
Find it in bindings.
```python
# This is a python snippet
print("Hello World")
```
This is a photo
![](/images/icon.png)
2023-05-25 10:51:31 +00:00
"""
2023-05-29 22:37:09 +00:00
for tok in re.split(r'(\s+)', generated_text):
if count >= n_predict:
2023-05-25 09:34:56 +00:00
break
2023-05-29 22:37:09 +00:00
word = tok
2023-05-25 09:34:56 +00:00
if new_text_callback is not None:
if not new_text_callback(word):
break
output += word
count += 1
except Exception as ex:
print(ex)
return output
2023-05-25 14:40:28 +00:00
# Decomment if you want to build a custom model listing
#@staticmethod
#def list_models(config:dict):
2023-05-25 21:24:14 +00:00
# """Lists the models for this binding
2023-05-25 14:40:28 +00:00
# """
2023-05-25 21:24:14 +00:00
# models_dir = Path('./models')/config["binding"] # replace with the actual path to the models folder
# return [f.name for f in models_dir.glob(LLMBinding.file_extension)]
2023-05-25 14:40:28 +00:00
#
2023-05-25 09:34:56 +00:00
@staticmethod
def get_available_models():
# Create the file path relative to the child class's directory
2023-05-25 21:24:14 +00:00
binding_path = Path(__file__).parent
file_path = binding_path/"models.yaml"
2023-05-25 09:34:56 +00:00
with open(file_path, 'r') as file:
yaml_data = yaml.safe_load(file)
return yaml_data