github

dnhkng / GlaDOS

  • пятница, 3 мая 2024 г. в 00:00:01
https://github.com/dnhkng/GlaDOS

Personality Core



GLaDOS Personality Core

This is a project dedicated to building a real-life version of GLaDOS.

localGLaDOS

This is a hardware and software project that will create an aware, interactive, and embodied GLaDOS.

This will entail:

  • Train GLaDOS voice generator
  • Generate a prompt that leads to a realistic "Personality Core"
  • Generate a MemGPT medium- and long-term memory for GLaDOS
  • Give GLaDOS vision via LLaVA
  • Create 3D-printable parts
  • Design the animatronics system

Software Architecture

The initial goals are to develop a low-latency platform, where GLaDOS can respond to voice interactions within 600ms.

To do this, the system constantly records data to a circular buffer, waiting for voice to be detected. When it's determined that the voice has stopped (including detection of normal pauses), it will be transcribed quickly. This is then passed to streaming local Large Language Model, where the streamed text is broken by sentence, and passed to a text-to-speech system. This means further sentences can be generated while the current is playing, reducing latency substantially.

Subgoals

  • The other aim of the project is to minimize dependencies, so this can run on constrained hardware. That means no PyTorch or other large packages.
  • As I want to fully understand the system, I have removed a large amount of redirection: which means extracting and rewriting code. i.e. as GLaDOS only speaks English, I have rewritten the wrapper around espeak and the entire Text-to-Speech subsystem is about 500 LOC and has only 3 dependencies: numpy, onnxruntime, and sounddevice.

Hardware System

This will be based on servo- and stepper-motors. 3D printable STL will be provided to create GlaDOS's body, and she will be given a set of animations to express herself. The vision system will allow her to track and turn toward people and things of interest.

Installation Instruction

If you want to install the TTS Engine on your machine, please follow the steps below. This has only been tested on Linux, but I think it will work on Windows with small tweaks.

  1. Install the espeak synthesizer according to the installation instructions for your operating system.

  2. Install the required Python packages, e.g., by running pip install -r requirements.txt

  3. For the LLM, install Llama.cpp, and compile it for your CPU or GPU. Edit the LLAMA_SERVER_PATH parameter in glados.py to match your installation path.

  4. For voice recognition, install Whisper.cpp, and after compiling, run make libwhisper.so and then move the "libwhisper.so" file to the "glados" folder or add it to your path. For Windows, check out the discussion in my whisper pull request.

  5. Download the models:

    1. voice recognition model
    2. Llama-3 8B or
    3. Llama-3 70B

    and put them in the "models" directory.

Testing

You can test the systems by exploring the 'demo.ipynb'.

Star History

Star History Chart