Manual Model Download
Stuck on Meetily's Step 1 or Step 2 download screen? Download the files yourself and slot them in. Works for non-technical users — no terminal required.
Last updated: April 17, 2026
On this page
TL;DR
Stuck on Meetily's Step 1 or Step 2 download screen during onboarding? Your network is probably blocking the download. This guide shows you how to grab the files in your browser, drop them into the right folder, and restart Meetily. No terminal, no commands — about ten minutes total.
Before you start
A quick checklist so you don't get stuck mid-way:
- A modern browser — Chrome, Edge, or Firefox. Safari sometimes opens large files in a new tab instead of saving them; if that happens, hold Option while clicking the download link to force a save.
- Free disk space — about 700 MB if only Step 1 failed, or around 3 GB if both Step 1 and Step 2 failed.
- A stable connection — if your office or school network is the problem, a phone hotspot is the fastest workaround. Most hotspots don't apply the same filtering.
- About 10 minutes end-to-end (most of that is the encoder download).
What is Meetily downloading?
When you install Meetily for the first time, onboarding has exactly two downloads. You'll see them labeled on screen as "Step 1" and "Step 2":
| Onboarding screen | What it downloads | Size |
|---|---|---|
| Step 1 — "Download Transcription Model (Parakeet v3 - open source model from Nvidia)" | A speech-to-text model (turns your voice into words) | ~670 MB — 4 files |
| Step 2 — "Download Summary AI Model (Qwen 3.5 2B…)" or "(Qwen 3.5 4B…)" | An AI that writes meeting summaries | ~1.3 GB or ~2.6 GB — 1 file |
How Meetily picks 2B vs 4B for you
On a Mac with more than 8 GB of RAM, Meetily picks Qwen 3.5 4B. Everyone else (Windows, or Mac with 8 GB or less) gets Qwen 3.5 2B. You don't pick this — Meetily picks for you. The model name shown on the Step 2 screen tells you which one was chosen.
If both screens got stuck, you'll do this twice. Otherwise, just the one that failed.
Which screen is stuck?
Look at the title and subtitle of the onboarding screen you're stuck on, then jump to the matching section below.
| If the screen says… | Go to |
|---|---|
| Step 1 — "Download Transcription Model (Parakeet v3 …)" | Section A — Transcription model |
| Step 2 — "Download Summary AI Model (Qwen 3.5 2B …)" | Section B — Summary model (use the 2B link) |
| Step 2 — "Download Summary AI Model (Qwen 3.5 4B …)" | Section B — Summary model (use the 4B link) |
| Both screens stuck | Do Section A, then Section B. Order doesn't matter. |
| Comfortable in a terminal? | Skip the walkthrough and jump straight to the paste-able script: Section A script and/or Section B script. One paste per section does everything (folder + download). |
Step 1: Find Meetily's models folder
Open the folder below in Finder (Mac) or File Explorer (Windows) and keep it open — you'll drop files into it later. You only need to do this once, even if you have to do both Section A and Section B.
-
Open Finder.
-
Press ⌘ + Shift + G (Command + Shift + G).
-
Copy the path below and paste it into the box that appears, then press Enter:
Code language: text~/Library/Application Support/pro.meetily.ai/models
If Finder says "The folder can't be found": the folder doesn't exist yet. Press ⌘ + Shift + G again, paste ~/Library/Application Support/, press Enter. Right-click → New Folder → name it exactly pro.meetily.ai. Open it, right-click → New Folder → name that one models. Done — keep this window open.
-
Hold the Windows key and press R. A small Run box opens.
-
Copy the path below and paste it into the box, then press Enter:
Code language: text%APPDATA%\pro.meetily.ai\models
If you see "Windows cannot find…": the folder doesn't exist yet. Open Run again (Win + R), paste %APPDATA%, press Enter. Right-click → New → Folder → name it pro.meetily.ai. Go inside, create another folder called models. Done — keep this window open.
Section A: Transcription model (Parakeet)
Skip this section if Step 1 already finished and only Step 2 is stuck.
A.1: Download these 4 files
Right-click each link and choose "Save Link As…" (Chrome / Edge / Safari) or "Save Target As…" (Firefox). Don't left-click — your browser will try to open a 622 MB file as a webpage.
You can save the files anywhere convenient first (your Downloads folder is fine) and move all four into the Parakeet folder in one go after they finish — no need to save directly into Application Support.
| # | Save this file | Size | Download link |
|---|---|---|---|
| 1 | encoder-model.int8.onnx | ~622 MB | encoder-model.int8.onnx(opens in new tab) |
| 2 | decoder_joint-model.int8.onnx | ~17 MB | decoder_joint-model.int8.onnx(opens in new tab) |
| 3 | nemo128.onnx | ~140 KB | nemo128.onnx(opens in new tab) |
| 4 | vocab.txt | ~94 KB | vocab.txt(opens in new tab) |
The encoder is the big one — give it a few minutes. The other three finish in seconds.
If the downloads fail on your work network
A phone hotspot is the easiest fix. Most hotspots don't have the same corporate filtering, and the downloads will go through.
A.2: Put the files in the right place
Inside the models folder you opened in Step 1:
-
Create a folder called
parakeet(all lowercase). -
Open
parakeet. Inside it, create another folder with this exact name (copy-paste to avoid typos):Code language: textparakeet-tdt-0.6b-v3-int8 -
Drop all 4 downloaded files into that folder.
When you're done, the structure should look like this:
pro.meetily.ai/
└── models/
└── parakeet/
└── parakeet-tdt-0.6b-v3-int8/
├── encoder-model.int8.onnx (~622 MB)
├── decoder_joint-model.int8.onnx (~17 MB)
├── nemo128.onnx (~140 KB)
└── vocab.txt (~94 KB)The folder name has to match exactly
parakeet-tdt-0.6b-v3-int8 — not parakeet-v3-int8, not Parakeet-tdt-0.6b-v3-Int8 (wrong case), not parakeet-tdt-0.6b-v3-int8 (with trailing space). One wrong character and Meetily won't find the model. Copy-paste the name from this guide.
Prefer the terminal?
This block does everything in Section A in one paste — creates the folder, downloads all four files, places them. Skip the right-click downloads in A.1 and the folder setup in A.2 if you use this.
Open Terminal: press ⌘ + Space to bring up Spotlight, type Terminal, and hit Enter. Then paste the block below and press Enter:
MODEL_DIR="$HOME/Library/Application Support/pro.meetily.ai/models/parakeet/parakeet-tdt-0.6b-v3-int8"
BASE_URL="https://huggingface.co/istupakov/parakeet-tdt-0.6b-v3-onnx/resolve/main"
mkdir -p "$MODEL_DIR"
curl -L --fail -o "$MODEL_DIR/encoder-model.int8.onnx" "$BASE_URL/encoder-model.int8.onnx"
curl -L --fail -o "$MODEL_DIR/decoder_joint-model.int8.onnx" "$BASE_URL/decoder_joint-model.int8.onnx"
curl -L --fail -o "$MODEL_DIR/nemo128.onnx" "$BASE_URL/nemo128.onnx"
curl -L --fail -o "$MODEL_DIR/vocab.txt" "$BASE_URL/vocab.txt"Open PowerShell: press the Windows key, type PowerShell, and click Windows PowerShell. Then paste the block below and press Enter:
$modelDir = Join-Path $env:APPDATA "pro.meetily.ai\models\parakeet\parakeet-tdt-0.6b-v3-int8"
$baseUrl = "https://huggingface.co/istupakov/parakeet-tdt-0.6b-v3-onnx/resolve/main"
New-Item -ItemType Directory -Force -Path $modelDir | Out-Null
$files = @(
"encoder-model.int8.onnx",
"decoder_joint-model.int8.onnx",
"nemo128.onnx",
"vocab.txt"
)
foreach ($f in $files) {
Write-Host "Downloading $f ..."
Invoke-WebRequest -Uri "$baseUrl/$f" -OutFile (Join-Path $modelDir $f)
}Section B: Summary model (Qwen 3.5)
Skip this section if Step 2 already finished and only Step 1 is stuck.
B.1: Pick the right variant
Your Step 2 screen tells you which one you need. Match the title:
| If the Step 2 screen says… | You need | File size |
|---|---|---|
| Qwen 3.5 2B (Balanced) | Qwen3.5-2B-Q4_K_M.gguf | ~1.27 GB |
| Qwen 3.5 4B (High Quality) | Qwen3.5-4B-Q4_K_M.gguf | ~2.6 GB |
Don't mix them up
Meetily expects the variant it picked for you. If it's set up for 2B and you place 4B (or vice versa), the app won't recognise the file.
B.2: Download the file
Right-click the link for your variant and choose "Save Link As…"
| Variant | Download link |
|---|---|
| Qwen 3.5 2B | Qwen3.5-2B-Q4_K_M.gguf(opens in new tab) |
| Qwen 3.5 4B | Qwen3.5-4B-Q4_K_M.gguf(opens in new tab) |
Save it with the exact filename shown above. Don't rename it — capital Q, capital K, capital M all matter.
If you're not 100% sure which variant Meetily picked for you, save both files into the summary folder. Meetily uses only the one it's set for; the other just sits there unused, no harm done.
B.3: Put the file in the right place
Inside the models folder you opened in Step 1:
- Create a folder called
summary(all lowercase). - Drop the
.gguffile directly inside.
pro.meetily.ai/
└── models/
└── summary/
└── Qwen3.5-2B-Q4_K_M.gguf (or Qwen3.5-4B-Q4_K_M.gguf)Prefer the terminal?
This block does everything in Section B in one paste — creates the folder, downloads the gguf, places it. Skip B.2 and B.3 if you use this. Defaults to Qwen 2B; if you need 4B, uncomment the two lines marked below before running.
Open Terminal: press ⌘ + Space to bring up Spotlight, type Terminal, and hit Enter. Then paste the block below and press Enter:
SUMMARY_DIR="$HOME/Library/Application Support/pro.meetily.ai/models/summary"
mkdir -p "$SUMMARY_DIR"
# Default: Qwen 3.5 2B (~1.27 GB)
MODEL_FILE="Qwen3.5-2B-Q4_K_M.gguf"
HF_REPO="unsloth/Qwen3.5-2B-GGUF"
# For Qwen 3.5 4B (~2.6 GB):
# MODEL_FILE="Qwen3.5-4B-Q4_K_M.gguf"
# HF_REPO="unsloth/Qwen3.5-4B-GGUF"
curl -L --fail -o "$SUMMARY_DIR/$MODEL_FILE" "https://huggingface.co/$HF_REPO/resolve/main/$MODEL_FILE"Open PowerShell: press the Windows key, type PowerShell, and click Windows PowerShell. Then paste the block below and press Enter:
$summaryDir = Join-Path $env:APPDATA "pro.meetily.ai\models\summary"
New-Item -ItemType Directory -Force -Path $summaryDir | Out-Null
# Default: Qwen 3.5 2B (~1.27 GB)
$modelFile = "Qwen3.5-2B-Q4_K_M.gguf"
$hfRepo = "unsloth/Qwen3.5-2B-GGUF"
# For Qwen 3.5 4B (~2.6 GB):
# $modelFile = "Qwen3.5-4B-Q4_K_M.gguf"
# $hfRepo = "unsloth/Qwen3.5-4B-GGUF"
Write-Host "Downloading $modelFile ..."
Invoke-WebRequest -Uri "https://huggingface.co/$hfRepo/resolve/main/$modelFile" `
-OutFile (Join-Path $summaryDir $modelFile)Step 2: Quit and restart Meetily
Meetily only scans the models folder when it starts up. You have to fully quit and reopen — closing the window isn't enough.
Bring Meetily to the foreground, then press ⌘ + Q. (Or click Meetily in the menu bar at the top → Quit Meetily.)
Wait a few seconds, then reopen Meetily from Applications or Spotlight.
Right-click the Meetily icon in the system tray (bottom-right of the screen, near the clock) and choose Quit. Closing the window leaves the process running and the new files won't be picked up.
Wait a few seconds, then reopen Meetily from the Start menu.
After restart, the onboarding screen should show a green checkmark ("Transcription Model Ready" / "Summary Model Ready") instead of the progress bar. You can click Next and continue.
If you'd already finished onboarding when you started this guide, no restart action is needed in onboarding — just open Settings in Meetily. The transcription model shows as Downloaded under Transcript, and the summary model under Built-in AI Models.
You're done — here's what to look for
You'll know the manual install worked when you see:
- A green checkmark on the previously stuck onboarding screen, with the wording "Transcription Model Ready" (Step 1) or "Summary Model Ready" (Step 2). The progress bar is gone, and the Next button is now active.
- If you'd already finished onboarding before starting this guide: open Meetily and check Settings → Transcript (the transcription model shows Downloaded) and Settings → Built-in AI Models (the summary model shows Downloaded).
If you don't see those, jump to Troubleshooting below.
Hitting this often? Ask IT to allowlist HuggingFace
If your network blocks the in-app downloader regularly (corporate environments, schools, certain ISPs), forward this to your IT team: please allowlist huggingface.co and cas-bridge.xethub.hf.co (HuggingFace's CDN that serves the actual file bytes). Once allowlisted, Meetily's normal in-app downloader works on the first try and you'll never need this guide again.
Troubleshooting
Frequently Asked Questions
Related
- Pluggable Transcription — how to switch between Parakeet, Whisper, and cloud providers once your model is installed.