fix(AI): type error in fallback models

This commit is contained in:
Jake Turner 2026-02-19 05:41:05 +00:00
parent 7a3c4bfbba
commit 92a7564d6a
No known key found for this signature in database
GPG Key ID: 6DCBBAE4FEAB53EB

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
}, },
], ],
}, },