fractalego / wafl-llm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WAFL-llm

WAFL is built to run as a two-part system. Both can be installed on the same machine. This is the LLM side of the WAFL project.

The two parts of WAFL

LLM side (needs a GPU)

This is a model server for the speech-to-text model, the LLM, the embedding system, and the text-to-speech model.

Installation

In order to quickly run the LLM side, you can use the following installation commands:

pip install wafl-llm
wafl-llm start

which will use the default models and start the server on port 8080.

The installation will require MPI and Java installed on the system. One can install both with the following commands

sudo apt install libopenmpi-dev
sudo apt install default-jdk

Configuration

A use-case specific configuration can be set by creating a config.json file in the path where wafl-llm start is executed. The file should look like this (the default configuration)

{
  "llm_model": "mistralai/Mistral-7B-Instruct-v0.1",
  "speaker_model": "facebook/fastspeech2-en-ljspeech",
  "whisper_model": "fractalego/personal-whisper-distilled-model",
  "sentence_embedder_models": "TaylorAI/gte-tiny"
}

The models are downloaded from the HugggingFace repository. Any other compatible model should work.

Docker

Run the following

docker/build.sh
docker run -p8080:8080 --env NVIDIA_DISABLE_REQUIRE=1 --gpus all wafl-llm

About

License:MIT License


Languages

Language:Python 94.2%Language:Dockerfile 4.9%Language:Shell 0.8%