I received a bug report from a macOS 26 user. They are unable to download any model. They consistently get an offline mode: Repository not available locally
error. The user is not using a firewall.
I haven't updated to macOS 26 yet and I'm unable to reproduce the issue on macOS 15 Sequoia. I tried to compile the again on Xcode 26 but that didn't solve their issue.
Has anyone seen this issue?
This is the code I'm using to download models:
let modelId = "mlx-community/SmolLM-135M-8bit"
let hub = RepoStore.load().hubAPI(downloadBase: "https://huggingface.co")
try await hub.snapshot(from: modelId) { progress in
...
}
