Ultravox is a new kind of multimodal LLM that can understand text as well as human speech, without the need for a separate Audio Speech Recognition (ASR) stage. Building on research like AudioLM, SeamlessM4T, Gazelle, SpeechGPT, and others, we've extended Meta's Llama 3 model with a multimodal projector that converts audio directly into the high-dimensional space used by Llama 3. This direct coupling allows Ultravox to respond much more quickly than systems that combine separate ASR and LLM components. In the future this will also allow Ultravox to natively understand the paralinguistic cues of timing and emotion that are omnipresent in human speech.
The current version of Ultravox (v0.1), when invoked with audio content, has a time-to-first-token (TTFT) of approximately 200ms, and a tokens-per-second rate of ~100, all using a Llama 3 8B backbone. While quite fast, we believe there is considerable room for improvement in these numbers. We look forward to working with LLM hosting providers to deliver state-of-the-art performance for Ultravox.
Ultravox currently takes in audio and emits streaming text. As we evolve the model, we'll train it to be able to emit a stream of speech tokens that can then be converted directly into raw audio by an appropriate unit vocoder. We're interested in working with interested parties to build this functionality!
See Ultravox in action via a voice call with an AI in our app, ai.town. (Note: there's been a lot of traffic to our inference server and we've hit a few bugs. If the demo seems to be erroring out please try again in a bit.)
Join us on our Discord server here.
If you're interested in working on Ultravox fulltime, we're hiring! Check out our jobs page here.
You can try out Ultravox using your own audio content (as a WAV file), using the following curl command:
curl -X POST -H "Authorization: Bearer $ULTRAVOX_API_KEY" -H "Content-Type: application/json" \
-d @data.json https://ultravox.api.fixie.ai/v1/chat/completions
where data.json
contains the following request (using the OpenAI inference protocol). You'll note that we're overloading image_url
to handle non-image data (in this case, the input WAV file); this allows the use of existing OpenAI-compatible clients and serving frameworks without protocol changes. Also, because the message content
is a list, no special tokens are needed in the text portion of the user message.
{
"model": "fixie-ai/ultravox-v0_2",
"messages": [{
"role": "user",
"content": [{
"type": "text",
"text": "Listen to the following audio and respond accordingly:"
}, {
"type": "image_url",
"image_url": {
"url": "data:audio/wav;base64,{base64_wav}"
}
}]
}],
"stream": true
}
You can download the latest weights from the Ultravox Hugging Face page.
Read on if you're interested in training your own version of Ultravox.
Install the basic tools:
Homebrew
is a package manager for MacOS that also mostly works for Linux. If you're running Debian or Ubuntu Linux, you can alternatively get by with apt.Just
simplifies our shell workflows. It frequently functions as our interface to all the other tools.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew update
brew install just
Create a Python virtual environment and install the necessary packages:
just install
We're using Poetry to manage the Python virtual environment.
You need to setup a few things to run on the Mosaic Platform.
- Install & login to the Mosaic CLI
pip install --upgrade mosaicml-cli
mcli init
mcli set api-key <new-value>
- set API keys for tools we use:
# Huggging Face token for accessing walled data and models
mcli create secret env HF_TOKEN=hf_<your_token>
# WandB token for logging experiments
mcli create secret env WANDB_PROJECT=ultravox
mcli create secret env WANDB_API_KEY=<your_wandb_key>
# GCP credentials for accessing data (e.g. BoolQ)
# Get service_account.json file from Justin/Farzad and put it in the root dir, then
mcli create secret gcp
We do most of our training on the MosaicML platform, although it's not open to the public. However, you can do the same training on your own GPU using the instructions outlined in the Local Training section below.
To kick off a MosaicML training job using the default config, just do:
just train
For DDP training make sure to use:
torchrun --nproc_per_node=8 -m ultravox.training.train
Here's an example command to run a training experiment using an existing config (in this case, using TinyLlama as the LLM backbone):
python -m ultravox.training.train --config_path ultravox/training/configs/asr_tinyllama.yaml --data_set 'dummy' --device cpu --batch_size 1 --exp_name <give_your_experiment_a_name>
Before running any training jobs, you need to setup your SSH key in the Mosaic Platform: https://docs.mosaicml.com/projects/mcli/en/latest/resources/secrets/ssh.html#page-secrets-ssh
## Create a new SSH key and add it to the Mosaic Platform
# ssh-keygen -f ~/.ssh/mclid_id_rsa
## add the **public** key to Github
# mcli create secret ssh ~/.ssh/mclid_id_rsa
mcli run -f mcloud.yaml --follow
Other useful commands:
mcli get clusters
mcli util r7z2
mcli get runs
mcli get runs --cluster r7z2
mcli run -f mcloud.yaml --follow
For interactive runs, we don't recommend using --interactive
. Instead set the command
to be something like
sleep 3600
and then connect to it using mcli connect <job_name> --tmux
.
This way your environment (code and packages) will be the same as the training environment.
The value 3600
(1 hour), is used as an example.
IMPORTANT: Make sure to stop the machine when you're done with any job, specially interactive ones!
- Use
infer_tool.py --json > file
to create a jsonl output from a given model/dataset combo, where each line contains two values: question and answer. - Use
eval_tool.py -f file
to evaluate the jsonl file, which will produce an average score for the model on the dataset.
Useful commands:
just update # update dependencies
just format # run formatting (black, isort, autoflake)
just python # activate venv and run python