# 🌟 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 ```