From 9b80d137409f159755467b0d776cfe86a7188857 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Sat, 29 Nov 2025 15:28:38 +0100 Subject: [PATCH] fix(chat): update templates page to use Gemini 2.5 Flash as default model MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed fallback model ID from GPT-4o-Mini to Gemini 2.5 Flash for template-based conversations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../chat/apps/web/src/routes/(protected)/templates/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/chat/apps/web/src/routes/(protected)/templates/+page.svelte b/apps/chat/apps/web/src/routes/(protected)/templates/+page.svelte index f43af885a..c612de1cd 100644 --- a/apps/chat/apps/web/src/routes/(protected)/templates/+page.svelte +++ b/apps/chat/apps/web/src/routes/(protected)/templates/+page.svelte @@ -50,7 +50,7 @@ // Create a new conversation with this template const conversationId = await conversationService.createConversation( authStore.user.id, - template.model_id || '550e8400-e29b-41d4-a716-446655440004', // Default to GPT-4o-Mini + template.model_id || '550e8400-e29b-41d4-a716-446655440101', // Default to Gemini 2.5 Flash 'template', template.id, template.document_mode