-
Notifications
You must be signed in to change notification settings - Fork 3k
fix(onboard): offer Ollama upgrade when host version too old #4186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 13 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
2a8e3aa
fix(onboard): offer Ollama upgrade when host version too old
laitingsheng d6c7199
refactor(onboard): extract Ollama install menu to satisfy entrypoint …
laitingsheng c39e816
refactor(onboard): brew upgrade on macOS, extract Ollama version helpers
laitingsheng cd08178
fix(onboard): force system upgrade and verify Ollama version after in…
laitingsheng 4be19f8
fix(onboard): verify upgrade via running daemon and reject user-local…
laitingsheng e7d34ed
fix(onboard): consider running daemon version when deciding Ollama up…
laitingsheng 262bbea
fix(onboard): scope Ollama daemon upgrade check to local host and lab…
laitingsheng c5b23c1
fix(onboard): pin resolved Ollama host after install and label stale …
laitingsheng 7612370
fix(onboard): start local Ollama daemon when only Windows-host probe …
laitingsheng 5c43b26
fix(onboard): re-probe loopback fresh instead of trusting cached reso…
laitingsheng 3f2b8b5
fix(onboard): guard env=system upgrade against missing sudo and unblo…
laitingsheng 373b05f
fix(onboard): stop stale Ollama daemon on macOS upgrade; drop unused …
laitingsheng 8497696
fix(onboard): stop stale Linux Ollama daemon before relaunch on non-s…
laitingsheng 0ecfbc0
Merge branch 'main' into fix/4178-ollama-version-upgrade
cv 74b8723
refactor(onboard): split Ollama Linux upgrade helpers
cv ba1b68f
Merge branch 'main' into fix/4178-ollama-version-upgrade
cv File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| // SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import { describe, expect, it } from "vitest"; | ||
|
|
||
| import { | ||
| getInstalledOllamaVersion, | ||
| getRunningOllamaDaemonVersion, | ||
| isOllamaVersionAtLeast, | ||
| MIN_OLLAMA_VERSION, | ||
| } from "../../../dist/lib/inference/ollama-version"; | ||
|
|
||
| describe("Ollama version detection", () => { | ||
| it("parses 'ollama version is X.Y.Z' output", () => { | ||
| const capture = () => "ollama version is 0.6.2"; | ||
| expect(getInstalledOllamaVersion(capture)).toBe("0.6.2"); | ||
| }); | ||
|
|
||
| it("returns null when ollama --version produces no output", () => { | ||
| const capture = () => ""; | ||
| expect(getInstalledOllamaVersion(capture)).toBeNull(); | ||
| }); | ||
|
|
||
| it("returns null when ollama --version output has no version", () => { | ||
| const capture = () => "ollama: command not found"; | ||
| expect(getInstalledOllamaVersion(capture)).toBeNull(); | ||
| }); | ||
|
|
||
| it("treats null/missing versions as below the minimum", () => { | ||
| expect(isOllamaVersionAtLeast(null, MIN_OLLAMA_VERSION)).toBe(false); | ||
| }); | ||
|
|
||
| it("treats 0.6.2 as below the 0.7.0 floor", () => { | ||
| expect(isOllamaVersionAtLeast("0.6.2", "0.7.0")).toBe(false); | ||
| }); | ||
|
|
||
| it("treats 0.7.0 as meeting the 0.7.0 floor", () => { | ||
| expect(isOllamaVersionAtLeast("0.7.0", "0.7.0")).toBe(true); | ||
| }); | ||
|
|
||
| it("treats 0.24.0 as above the 0.7.0 floor", () => { | ||
| expect(isOllamaVersionAtLeast("0.24.0", "0.7.0")).toBe(true); | ||
| }); | ||
|
|
||
| it("treats 1.0.0 as above the 0.7.0 floor", () => { | ||
| expect(isOllamaVersionAtLeast("1.0.0", "0.7.0")).toBe(true); | ||
| }); | ||
|
|
||
| it("returns false for unparseable version components", () => { | ||
| expect(isOllamaVersionAtLeast("not-a-version", "0.7.0")).toBe(false); | ||
| }); | ||
|
|
||
| it("reads the running daemon version from /api/version", () => { | ||
| const capture = () => '{"version":"0.24.0"}'; | ||
| expect(getRunningOllamaDaemonVersion(capture)).toBe("0.24.0"); | ||
| }); | ||
|
|
||
| it("returns null when the daemon endpoint is unreachable", () => { | ||
| const capture = () => ""; | ||
| expect(getRunningOllamaDaemonVersion(capture)).toBeNull(); | ||
| }); | ||
|
|
||
| it("returns null when the daemon payload is not JSON", () => { | ||
| const capture = () => "ollama is running"; | ||
| expect(getRunningOllamaDaemonVersion(capture)).toBeNull(); | ||
| }); | ||
|
|
||
| it("returns null when the daemon payload omits a version field", () => { | ||
| const capture = () => '{"status":"ok"}'; | ||
| expect(getRunningOllamaDaemonVersion(capture)).toBeNull(); | ||
| }); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,91 @@ | ||
| // SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| /** | ||
| * Ollama version detection helpers. Kept separate from the larger | ||
| * `inference/local.ts` so the version-floor logic can evolve without | ||
| * dragging the rest of the local-inference helpers along. | ||
| */ | ||
|
|
||
| const { runCapture } = require("../runner"); | ||
| import { OLLAMA_PORT } from "../core/ports"; | ||
|
|
||
| export type OllamaVersionRunCapture = ( | ||
| cmd: readonly string[], | ||
| opts?: { ignoreError?: boolean }, | ||
| ) => string; | ||
|
|
||
| /** | ||
| * Minimum Ollama version NemoClaw expects when reusing an existing host | ||
| * Ollama. Older Ollama runners crash loading newer starter models because | ||
| * their GGUF parsers predate the model format. Bump this when starter-model | ||
| * recipes adopt a newer GGUF feature. | ||
| */ | ||
| export const MIN_OLLAMA_VERSION = "0.7.0"; | ||
|
|
||
| export function getInstalledOllamaVersion( | ||
| runCaptureImpl?: OllamaVersionRunCapture, | ||
| ): string | null { | ||
| const capture = runCaptureImpl ?? runCapture; | ||
| const out = capture(["ollama", "--version"], { ignoreError: true }); | ||
| if (!out) return null; | ||
| const match = out.match(/(\d+)\.(\d+)\.(\d+)/); | ||
| return match ? match[0] : null; | ||
| } | ||
|
|
||
| /** | ||
| * Probe the running Ollama daemon's version via `/api/version`. This is | ||
| * the version NemoClaw will actually drive for inference — the CLI binary | ||
| * on `PATH` may be newer than the daemon that still owns `:11434` (for | ||
| * example after a user-local install while the original systemd unit is | ||
| * still running). Returns `null` when the daemon is unreachable or the | ||
| * response payload is not parseable. | ||
| */ | ||
| export function getRunningOllamaDaemonVersion( | ||
| runCaptureImpl?: OllamaVersionRunCapture, | ||
| endpoint: string = `http://127.0.0.1:${OLLAMA_PORT}/api/version`, | ||
| ): string | null { | ||
| const capture = runCaptureImpl ?? runCapture; | ||
| const out = capture( | ||
| [ | ||
| "curl", | ||
| "-sf", | ||
| "--connect-timeout", | ||
| "2", | ||
| "--max-time", | ||
| "5", | ||
| endpoint, | ||
| ], | ||
| { ignoreError: true }, | ||
| ); | ||
| if (!out) return null; | ||
| let parsed: unknown; | ||
| try { | ||
| parsed = JSON.parse(out); | ||
| } catch { | ||
| return null; | ||
| } | ||
| if (!parsed || typeof parsed !== "object") return null; | ||
| const raw = (parsed as { version?: unknown }).version; | ||
| if (typeof raw !== "string") return null; | ||
| const match = raw.match(/(\d+)\.(\d+)\.(\d+)/); | ||
| return match ? match[0] : null; | ||
| } | ||
|
|
||
| export function isOllamaVersionAtLeast( | ||
| version: string | null, | ||
| minimum: string, | ||
| ): boolean { | ||
| if (!version) return false; | ||
| const parts = version.split(".").map((v) => Number.parseInt(v, 10)); | ||
| const min = minimum.split(".").map((v) => Number.parseInt(v, 10)); | ||
| const len = Math.max(parts.length, min.length); | ||
| for (let i = 0; i < len; i += 1) { | ||
| const a = parts[i] ?? 0; | ||
| const b = min[i] ?? 0; | ||
| if (Number.isNaN(a) || Number.isNaN(b)) return false; | ||
| if (a > b) return true; | ||
| if (a < b) return false; | ||
| } | ||
| return true; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.