fixed bindings

This commit is contained in:
saloui 2023-09-13 17:10:22 +02:00
parent fdbb1387a9
commit b33dcb21bf
2 changed files with 83 additions and 14 deletions

View File

@ -0,0 +1,68 @@
from lollms.config import InstallOption
from lollms.binding import BindingBuilder, ModelBuilder
from lollms.personality import MSG_TYPE, PersonalityBuilder
from lollms.main_config import LOLLMSConfig
from lollms.helpers import ASCIIColors
from lollms.paths import LollmsPaths
from lollms.app import LollmsApplication
from lollms.terminal import MainMenu
from typing import Callable
from pathlib import Path
import argparse
import yaml
import time
import sys
class Trainer(LollmsApplication):
def __init__(
self,
configuration_path:str|Path=None,
show_logo:bool=True,
show_time_elapsed:bool = False
):
# Fore it to be a path
self.configuration_path = configuration_path
self.is_logging = False
self.log_file_path = ""
self.show_time_elapsed = show_time_elapsed
self.bot_says = ""
# get paths
lollms_paths = LollmsPaths.find_paths(force_local=False, tool_prefix="lollms_server_")
# Configuration loading part
config = LOLLMSConfig.autoload(lollms_paths, configuration_path)
super().__init__("lollms-console",config, lollms_paths)
if show_logo:
self.menu.show_logo()
def start_training(self):
print(self.model)
def main():
# Create the argument parser
parser = argparse.ArgumentParser(description='App Description')
# Add the configuration path argument
parser.add_argument('--configuration_path', default=None,
help='Path to the configuration file')
# Parse the command-line arguments
args = parser.parse_args()
# Parse the command-line arguments
args = parser.parse_args()
configuration_path = args.configuration_path
lollms_app = Trainer(configuration_path=configuration_path)
lollms_app.start_training()
if __name__ == "__main__":
main()

View File

@ -226,6 +226,7 @@ class MainMenu(Menu):
print(f"{ASCIIColors.color_green}Current binding: {ASCIIColors.color_reset}{self.lollms_app.config['binding_name']}") print(f"{ASCIIColors.color_green}Current binding: {ASCIIColors.color_reset}{self.lollms_app.config['binding_name']}")
for p in self.lollms_app.lollms_paths.bindings_zoo_path.iterdir(): for p in self.lollms_app.lollms_paths.bindings_zoo_path.iterdir():
if p.is_dir() and not p.stem.startswith("."): if p.is_dir() and not p.stem.startswith("."):
if (p/"binding_card.yaml").exists():
with open(p/"binding_card.yaml", "r") as f: with open(p/"binding_card.yaml", "r") as f:
card = yaml.safe_load(f) card = yaml.safe_load(f)
with open(p/"models.yaml", "r") as f: with open(p/"models.yaml", "r") as f: