fix: tighten Ollama onboarding cloud handling (#41529) (thanks @BruceMacD)

This commit is contained in:
Peter Steinberger
2026-03-11 14:51:56 +00:00
parent d6108a6f72
commit 1435fce2de
2 changed files with 6 additions and 6 deletions

View File

@@ -17,6 +17,7 @@ Docs: https://docs.openclaw.ai
- macOS/chat UI: add a chat model picker, persist explicit thinking-level selections across relaunch, and harden provider-aware session model sync for the shared chat composer. (#42314) Thanks @ImLukeF.
- iOS/TestFlight: add a local beta release flow with Fastlane prepare/archive/upload support, canonical beta bundle IDs, and watch-app archive fixes. (#42991) Thanks @ngutman.
- macOS/onboarding: detect when remote gateways need a shared auth token, explain where to find it on the gateway host, and clarify when a successful check used paired-device auth instead. (#43100) Thanks @ngutman.
- Onboarding/Ollama: add first-class Ollama setup with Local or Cloud + Local modes, browser-based cloud sign-in, curated model suggestions, and cloud-model handling that skips unnecessary local pulls. (#41529) Thanks @BruceMacD.
### Breaking

View File

@@ -17,11 +17,7 @@ export { OLLAMA_DEFAULT_BASE_URL } from "../agents/ollama-models.js";
export const OLLAMA_DEFAULT_MODEL = "glm-4.7-flash";
const OLLAMA_SUGGESTED_MODELS_LOCAL = ["glm-4.7-flash"];
const OLLAMA_SUGGESTED_MODELS_CLOUD = [
"kimi-k2.5:cloud",
"minimax-m2.5:cloud",
"glm-5:cloud",
];
const OLLAMA_SUGGESTED_MODELS_CLOUD = ["kimi-k2.5:cloud", "minimax-m2.5:cloud", "glm-5:cloud"];
function normalizeOllamaModelName(value: string | undefined): string | undefined {
const trimmed = value?.trim();
@@ -455,7 +451,10 @@ export async function configureOllamaNonInteractive(params: {
let allModelNames = orderedModelNames;
let defaultModelId = requestedDefaultModelId;
if ((pulledRequestedModel || requestedCloudModel) && !allModelNames.includes(requestedDefaultModelId)) {
if (
(pulledRequestedModel || requestedCloudModel) &&
!allModelNames.includes(requestedDefaultModelId)
) {
allModelNames = [...allModelNames, requestedDefaultModelId];
}
if (!availableModelNames.has(requestedDefaultModelId)) {