PulseAugur
EN
LIVE 03:29:13

Ollama's '-cloud' suffix triggers unexpected model search behavior

The author discovered a quirk in Ollama's handling of model tags ending in "-cloud". It was found that the "-cloud" suffix is not merely a label but an instruction for Ollama to strip the suffix and query the model from ollama.com. This behavior caused a "model not found" error when the author attempted to use a custom model named "Natuworkguy/flash-onyx-2.2:31b-cloud", as Ollama searched for a non-existent "Natuworkguy/flash-onyx-2.2:31b" on the remote server. The workaround involves renaming the model tag to avoid the reserved "-cloud" suffix, such as "flash-onyx-2.2:31b-cloudbase", which then correctly directs Ollama to the remote "gemma4:31b" model. AI

IMPACT This discovery may help developers using Ollama avoid similar tag-related issues when deploying models.

RANK_REASON The item describes a workaround for a specific software behavior, not a new release or major industry event.

Read on dev.to — LLM tag →

AI-generated summary · Google Gemini · from 1 sources. How we write summaries →

Ollama's '-cloud' suffix triggers unexpected model search behavior

How we ranked this

Signal score
27 / 100
Composite score across the factors below. Higher = stronger signal that this story matters right now.
Newsworthiness bucket
Tool
The item describes a workaround for a specific software behavior, not a new release or major industry event.
Source corroboration
Single-source cluster
Only one publisher covered this so far. Single-source stories can still rank when the publisher is high-authority, but they lack cross-source corroboration.
Topics
infra, product
Editorial topic classification. Feeds into how the story surfaces on /topic/<slug> hub pages and into the per-entity coverage mix.
AI-industry relevance
High
Clearly on-topic for AI-industry coverage.
Story freshness
Breaking (< 6h)
Fresh story with cross-source coverage still developing. Ranking may shift as more sources report.

Full methodology in our editorial standards.

COVERAGE [1]

  1. dev.to — LLM tag TIER_1 English(EN) · Nathan C. ·

    Ollama's -cloud suffix isn't a label, it's a silent instruction. I bypassed it.

    <div class="highlight js-code-highlight"> <pre class="highlight console"><code><span class="go">Error: model 'Natuworkguy/flash-onyx-2.2:31b' not found (status code: 404) </span></code></pre> </div> <p>I never built <code>:31b</code>.</p> <p>I built <code>:31b-cloud</code>. I ask…