# WhisperBot Welcome to WhisperBot. WhisperBot builds upon the capabilities of the [WhisperLive](https://github.com/collabora/WhisperLive) and [WhisperSpeech](https://github.com/collabora/WhisperSpeech) by integrating Mistral, a Large Language Model (LLM), on top of the real-time speech-to-text pipeline. WhisperLive relies on OpenAI Whisper, a powerful automatic speech recognition (ASR) system. Both Mistral and Whisper are optimized to run efficiently as TensorRT engines, maximizing performance and real-time processing capabilities. ## Features - **Real-Time Speech-to-Text**: Utilizes OpenAI WhisperLive to convert spoken language into text in real-time. - **Large Language Model Integration**: Adds Mistral, a Large Language Model, to enhance the understanding and context of the transcribed text. - **TensorRT Optimization**: Both Mistral and Whisper are optimized to run as TensorRT engines, ensuring high-performance and low-latency processing. ## Prerequisites Install [TensorRT-LLM](https://github.com/NVIDIA/TensorRT-LLM/blob/main/docs/source/installation.md) to build Whisper and Mistral TensorRT engines. The README builds a docker image for TensorRT-LLM. Instead of building a docker image, we can also refer to the README and the [Dockerfile.multi](https://github.com/NVIDIA/TensorRT-LLM/blob/main/docker/Dockerfile.multi) to install the required packages in the base pytroch docker image. Just make sure to use the correct base image as mentioned in the dockerfile and everything should go nice and smooth. ### Build Whisper TensorRT Engine > [!NOTE] > > These steps are included in `setup/setup-tensorrt-llm.sh` Change working dir to the [whisper example dir](https://github.com/NVIDIA/TensorRT-LLM/tree/main/examples/whisper) in TensorRT-LLM. ``` bash cd TensorRT-LLM/examples/whisper ``` Currently, by default TensorRT-LLM only supports `large-v2` and `large-v3`. In this repo, we use `small.en`. Download the required assets ``` bash # the sound filter definitions wget --directory-prefix=assets assets/mel_filters.npz https://raw.githubusercontent.com/openai/whisper/main/whisper/assets/mel_filters.npz # the small.en model weights wget --directory-prefix=assets https://openaipublic.azureedge.net/main/whisper/models/f953ad0fd29cacd07d5a9eda5624af0f6bcf2258be67c92b79389873d91e0872/small.en.pt ``` We have to patch the script to add support for out model size (`small.en`): ``` bash patch <&1 | tee build.log ``` ## Run WhisperBot - Clone this repo and install requirements. ```bash git clone https://github.com/collabora/WhisperBot.git cd WhisperBot apt update apt install ffmpeg portaudio19-dev -y pip install -r requirements.txt ``` ### Whisper + Mistral - Take the folder path for Whisper TensorRT model, folder_path and tokenizer_path for Mistral TensorRT from the build phase. If a huggingface model is used to build mistral then just use the huggingface repo name as the tokenizer path. ```bash python3 main.py --mistral --whisper_tensorrt_path /root/TensorRT-LLM/examples/whisper/whisper_small_en \ --mistral_tensorrt_path /root/TensorRT-LLM/examples/llama/tmp/mistral/7B/trt_engines/fp16/1-gpu/ \ --mistral_tokenizer_path teknium/OpenHermes-2.5-Mistral-7B ``` ### Whisper + Phi - Take the folder path for Whisper TensorRT model, folder_path and tokenizer_path for Phi TensorRT from the build phase. If a huggingface model is used to build phi then just use the huggingface repo name as the tokenizer path. ```bash python3 main.py --phi --whisper_tensorrt_path /root/TensorRT-LLM/examples/whisper/whisper_small_en \ --phi_tensorrt_path /root/TensorRT-LLM/examples/phi/phi_engine \ --phi_tokenizer_path /root/TensorRT-LLM/examples/phi/phi-2 ``` - On the client side clone the repo, install the requirements and execute `run_client.py` ```bash cd WhisperBot pip install -r requirements.txt python3 run_client.py ``` ## Contact Us For questions or issues, please open an issue. Contact us at: marcus.edel@collabora.com, jpc@collabora.com, vineet.suryan@collabora.com