mirror of https://github.com/kortix-ai/suna.git
qwen as main
This commit is contained in:
parent
1f9cce202e
commit
9d6683aeaf
|
@ -57,7 +57,7 @@ const API_URL = process.env.NEXT_PUBLIC_BACKEND_URL || '';
|
|||
|
||||
// Local storage keys
|
||||
const STORAGE_KEY_MODEL = 'suna-preferred-model';
|
||||
const DEFAULT_MODEL_ID = 'gemini-flash-2.5'; // Define default model ID
|
||||
const DEFAULT_MODEL_ID = 'qwen3'; // Define default model ID
|
||||
|
||||
interface ChatInputProps {
|
||||
onSubmit: (
|
||||
|
|
|
@ -4,7 +4,7 @@ import { useSubscription } from '@/hooks/react-query/subscriptions/use-subscript
|
|||
import { useState, useEffect } from 'react';
|
||||
|
||||
export const STORAGE_KEY_MODEL = 'suna-preferred-model';
|
||||
export const DEFAULT_FREE_MODEL_ID = 'gemini-flash-2.5';
|
||||
export const DEFAULT_FREE_MODEL_ID = 'qwen35';
|
||||
export const DEFAULT_PREMIUM_MODEL_ID = 'sonnet-3.7';
|
||||
|
||||
export type SubscriptionStatus = 'no_subscription' | 'active';
|
||||
|
@ -18,7 +18,7 @@ export interface ModelOption {
|
|||
|
||||
export const MODEL_OPTIONS: ModelOption[] = [
|
||||
{
|
||||
id: 'gemini-flash-2.5',
|
||||
id: 'qwen3',
|
||||
label: 'Free',
|
||||
requiresSubscription: false,
|
||||
description: 'Limited capabilities. Upgrade for full performance.'
|
||||
|
|
Loading…
Reference in New Issue