From 765207f9564f8b32a412a7d7d688ae716396a849 Mon Sep 17 00:00:00 2001 From: Jake Turner Date: Thu, 19 Feb 2026 05:41:05 +0000 Subject: [PATCH] fix(AI): type error in fallback models --- admin/constants/ollama.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/admin/constants/ollama.ts b/admin/constants/ollama.ts index 1b65c80..e162346 100644 --- a/admin/constants/ollama.ts +++ b/admin/constants/ollama.ts @@ -18,7 +18,8 @@ export const FALLBACK_RECOMMENDED_OLLAMA_MODELS: NomadOllamaModel[] = [ size: '5.1 GB', context: '128k', input: 'Text', - cloud: false + cloud: false, + thinking: false }, ], }, @@ -36,7 +37,8 @@ export const FALLBACK_RECOMMENDED_OLLAMA_MODELS: NomadOllamaModel[] = [ size: '1.1 GB', context: '128k', input: 'Text', - cloud: false + cloud: false, + thinking: true }, ], }, @@ -53,7 +55,8 @@ export const FALLBACK_RECOMMENDED_OLLAMA_MODELS: NomadOllamaModel[] = [ size: '581 MB', context: '128k', input: 'Text', - cloud: false + cloud: false, + thinking: false }, ], },