# π Vibe Models π
Welcome to the Vibe Models page! Here you can find a curated list of suggested models to use with Vibe. To install a model, use the "Magic Setup" link to open it in Vibe, or copy and paste the direct download link in Vibe settings.
## Available Models
### π± Tiny Model
A compact and efficient version, suitable for quick tasks and limited-resource environments.
[π Magic Setup](https://shorturl.at/XSP9R)
[π½ Direct Download](https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-tiny.bin?download=true)
### πΏ Small Model
A small yet capable model for a balance of efficiency and performance.
[π Magic Setup](https://shorturl.at/EmJS8)
[π½ Direct Download](https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-small.bin?download=true)
### βοΈ Medium Model
Balances performance and resource usage, making it ideal for most general applications.
[π Magic Setup](https://shorturl.at/Ha6br)
[π½ Direct Download](https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-medium.bin?download=true)
### π Large Model (v3)
For high accuracy and more computational resources, excels in complex scenarios.
[π Magic Setup](https://tinyurl.com/3cn846h8)
[π½ Direct Download](https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large-v3.bin?download=true)
### π Large v3 Turbo (Recommended)
[π Magic Setup](https://tinyurl.com/yphwban5)
[π½ Direct Download](https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large-v3-turbo.bin)
### π¦ Parakeet TDT 0.6B v3
Supports streaming and is best suited for dictation.
[π View Model](https://huggingface.co/vibe-app/parakeet-tdt-0.6b-v3-gguf/tree/main)
[π½ Download Q4_K_M](https://huggingface.co/vibe-app/parakeet-tdt-0.6b-v3-gguf/resolve/main/parakeet-tdt-0.6b-v3-Q4_K_M.gguf?download=true)
### β‘ Nemotron 3.5 ASR Streaming 0.6B
Supports streaming and is best suited for dictation.
[π View Model](https://huggingface.co/vibe-app/nemotron-3.5-asr-streaming-0.6b-gguf)
[π½ Download Q4_K_M](https://huggingface.co/vibe-app/nemotron-3.5-asr-streaming-0.6b-gguf/resolve/main/nemotron-3.5-asr-streaming-0.6b-Q4_K_M.gguf?download=true)
### Models optimised for other languages
β‘οΈ Hebrew (Ivrit)
Specialized for Hebrew (Ivrit) language data, optimized for high speed and accuracy in Hebrew tasks.
[π Magic Setup (Large v3 Turbo)](https://tinyurl.com/t9r3tyxk)
[π½ Direct Download (Large v3 Turbo)](https://huggingface.co/ivrit-ai/whisper-large-v3-turbo-ggml/resolve/main/ggml-model.bin?download=true)
π³π΄ Norwegian
Optimised for Norwegian by the [AI Lab at the National Library of Norway](https://huggingface.co/NbAiLab).
[π Magic Setup (medium)](https://tinyurl.com/5wzb9ux8)
[π½ Direct Download (medium)](https://huggingface.co/NbAiLab/nb-whisper-medium/blob/main/ggml-model.bin?download=true)
[π Magic Setup (large)](https://tinyurl.com/f228efbu)
[π½ Direct Download (large)](https://huggingface.co/NbAiLab/nb-whisper-large/blob/main/ggml-model.bin?download=true)
More models of smaller sizes are available via [their huggingface download page](https://huggingface.co/NbAiLab/nb-whisper-large).
Find the size you want, download the _ggml-model.bin_ file, rename the file, and palce it in vibe's model folder.
πΈπͺ Swedish
Optimised for Swedish by the [Data Lab at the National Library of Sweden](https://huggingface.co/KBLab).
[π Magic Setup (medium)](https://tinyurl.com/ynawnc33)
[π½ Direct Download (medium)](https://huggingface.co/KBLab/kb-whisper-medium/blob/main/ggml-model.bin?download=true)
[π Magic Setup (large v3)](https://tinyurl.com/46dvpeky)
[π½ Direct Download (large v3)](https://huggingface.co/KBLab/kb-whisper-large/blob/main/ggml-model.bin?download=true)
More models of smaller sizes are available via [their huggingface download page](https://huggingface.co/KBLab/kb-whisper-large).
Find the size you want, download the _ggml-model.bin_ file, rename the file, and palce it in vibe's model folder.
Enjoy exploring these models and enhancing your Vibe! πβ¨
### Want More?
Find additional models here:
[π See More Models](https://huggingface.co/ggerganov/whisper.cpp/tree/main)
---
### Prepare your own models
Convert transformers to GGML
```console
# Setup environment
curl -LsSf https://astral.sh/uv/install.sh | sh
source ~/.bashrc
uv venv
uv pip install torch transformers huggingface_hub
huggingface-cli login --token "token" # https://huggingface.co/settings/tokens
# Convert and upload
git clone https://github.com/openai/whisper
git clone https://github.com/ggml-org/whisper.cpp
git clone https://huggingface.co/ivrit-ai/whisper-large-v3-turbo
uv run ./whisper.cpp/models/convert-h5-to-ggml.py ./whisper-large-v3-turbo/ ./whisper .
uv run huggingface-cli upload --repo-type model whisper-large-v3-turbo-ivrit ./ggml-model.bin ./ggml-model.bin
# Quantize
sudo apt install cmake build-essential -y
cd whisper.cpp
cmake -B build
cmake --build build --config Release
cd ..
./whisper.cpp/build/bin/quantize ggml-model.bin ./ggml-model.int8.bin q8_0 # fp32/fp16/q8_0/q5_0
```