fix(AI): type error in fallback models

This commit is contained in:
Jake Turner 2026-02-19 05:41:05 +00:00 committed by Jake Turner
parent 7a3c4bfbba
commit 765207f956

View File

@ -18,7 +18,8 @@ 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 cloud: false,
thinking: false
}, },
], ],
}, },
@ -36,7 +37,8 @@ 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 cloud: false,
thinking: true
}, },
], ],
}, },
@ -53,7 +55,8 @@ export const FALLBACK_RECOMMENDED_OLLAMA_MODELS: NomadOllamaModel[] = [
size: '581 MB', size: '581 MB',
context: '128k', context: '128k',
input: 'Text', input: 'Text',
cloud: false cloud: false,
thinking: false
}, },
], ],
}, },