Meetily

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.

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 screenWhat it downloadsSize
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 stuckDo 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.

  1. Open Finder.

  2. Press ⌘ + Shift + G (Command + Shift + G).

  3. Copy the path below and paste it into the box that appears, then press Enter:

    ~/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.


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 fileSizeDownload link
1encoder-model.int8.onnx~622 MBencoder-model.int8.onnx
2decoder_joint-model.int8.onnx~17 MBdecoder_joint-model.int8.onnx
3nemo128.onnx~140 KBnemo128.onnx
4vocab.txt~94 KBvocab.txt

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:

  1. Create a folder called parakeet (all lowercase).

  2. Open parakeet. Inside it, create another folder with this exact name (copy-paste to avoid typos):

    parakeet-tdt-0.6b-v3-int8
  3. 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"

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 needFile 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…"

VariantDownload link
Qwen 3.5 2BQwen3.5-2B-Q4_K_M.gguf
Qwen 3.5 4BQwen3.5-4B-Q4_K_M.gguf

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:

  1. Create a folder called summary (all lowercase).
  2. Drop the .gguf file 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"

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.

After restart, the onboarding screen should show a green 100% completion state with Transcription Model Ready or Summary Model Ready. Continue with Proceed to Step 2 or the available forward button.

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 100% completion state on the previously stuck onboarding screen, with the wording "Transcription Model Ready" (Step 1) or "Summary Model Ready" (Step 2). The progress bar is full, and Proceed to Step 2 or the available forward button is 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


  • Transcription providers - how to switch between Parakeet, Whisper, and cloud providers once your model is installed.

Last updated on

On this page