From 0380f0064719996ae20ced893932ecb8405c59d6 Mon Sep 17 00:00:00 2001 From: sharath <29162020+tnfssc@users.noreply.github.com> Date: Sat, 19 Jul 2025 02:40:03 +0000 Subject: [PATCH] chore(models): update storage key and default free model ID for improved model selection --- .../components/thread/chat-input/_use-model-selection.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/thread/chat-input/_use-model-selection.ts b/frontend/src/components/thread/chat-input/_use-model-selection.ts index 438a3241..7e756400 100644 --- a/frontend/src/components/thread/chat-input/_use-model-selection.ts +++ b/frontend/src/components/thread/chat-input/_use-model-selection.ts @@ -5,11 +5,11 @@ import { useState, useEffect, useMemo } from 'react'; import { isLocalMode } from '@/lib/config'; import { useAvailableModels } from '@/hooks/react-query/subscriptions/use-model'; -export const STORAGE_KEY_MODEL = 'suna-preferred-model-v2'; +export const STORAGE_KEY_MODEL = 'suna-preferred-model-v3'; export const STORAGE_KEY_CUSTOM_MODELS = 'customModels'; export const DEFAULT_PREMIUM_MODEL_ID = 'claude-sonnet-4'; -// export const DEFAULT_FREE_MODEL_ID = 'deepseek'; -export const DEFAULT_FREE_MODEL_ID = 'claude-sonnet-4'; +export const DEFAULT_FREE_MODEL_ID = 'moonshotai/kimi-k2'; +// export const DEFAULT_FREE_MODEL_ID = 'claude-sonnet-4'; export type SubscriptionStatus = 'no_subscription' | 'active';