fix(AI): add cloud flag to fallback models

This commit is contained in:
Jake Turner 2026-02-04 21:33:05 -08:00
parent f63aad752f
commit 74e5618c40
No known key found for this signature in database
GPG Key ID: D11724A09ED19E59

View File

@ -18,6 +18,7 @@ export const FALLBACK_RECOMMENDED_OLLAMA_MODELS: NomadOllamaModel[] = [
size: '5.1 GB', size: '5.1 GB',
context: '128k', context: '128k',
input: 'Text', input: 'Text',
cloud: false
}, },
], ],
}, },
@ -35,6 +36,7 @@ export const FALLBACK_RECOMMENDED_OLLAMA_MODELS: NomadOllamaModel[] = [
size: '1.1 GB', size: '1.1 GB',
context: '128k', context: '128k',
input: 'Text', input: 'Text',
cloud: false
}, },
], ],
}, },
@ -51,6 +53,7 @@ export const FALLBACK_RECOMMENDED_OLLAMA_MODELS: NomadOllamaModel[] = [
size: '581 MB', size: '581 MB',
context: '128k', context: '128k',
input: 'Text', input: 'Text',
cloud: false
}, },
], ],
}, },