From c150556e498f0fb2fe75a1a9c9380281c6c37a2e Mon Sep 17 00:00:00 2001 From: Rohan Joshi Date: Mon, 8 Sep 2025 17:29:51 -0700 Subject: [PATCH] Voxtral documentation fix --- examples/models/voxtral/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/models/voxtral/README.md b/examples/models/voxtral/README.md index a111abdd630..5bc675e0615 100644 --- a/examples/models/voxtral/README.md +++ b/examples/models/voxtral/README.md @@ -8,7 +8,7 @@ To export the model, we use [Optimum ExecuTorch](https://github.com/huggingface/ ## Setting up Optimum ExecuTorch Install through pip package: ``` -pip install optimum-excecutorch +pip install optimum-executorch ``` Or install from source: @@ -101,5 +101,5 @@ with open("tensor.bin", "wb") as f: You can also produce raw audio file as follows (for Option A): ``` -ffmpeg -i audio.mp3 -f f32le -acodec pcm_f32le audio_input.bin -``` \ No newline at end of file +ffmpeg -i audio.mp3 -f f32le -acodec pcm_f32le -ar 16000 audio_input.bin +```