qwen as main

This commit is contained in:
marko-kraemer 2025-05-07 06:02:32 +02:00
parent 1f9cce202e
commit 9d6683aeaf
2 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ const API_URL = process.env.NEXT_PUBLIC_BACKEND_URL || '';
// Local storage keys // Local storage keys
const STORAGE_KEY_MODEL = 'suna-preferred-model'; 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 { interface ChatInputProps {
onSubmit: ( onSubmit: (

View File

@ -4,7 +4,7 @@ import { useSubscription } from '@/hooks/react-query/subscriptions/use-subscript
import { useState, useEffect } from 'react'; import { useState, useEffect } from 'react';
export const STORAGE_KEY_MODEL = 'suna-preferred-model'; 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 const DEFAULT_PREMIUM_MODEL_ID = 'sonnet-3.7';
export type SubscriptionStatus = 'no_subscription' | 'active'; export type SubscriptionStatus = 'no_subscription' | 'active';
@ -18,7 +18,7 @@ export interface ModelOption {
export const MODEL_OPTIONS: ModelOption[] = [ export const MODEL_OPTIONS: ModelOption[] = [
{ {
id: 'gemini-flash-2.5', id: 'qwen3',
label: 'Free', label: 'Free',
requiresSubscription: false, requiresSubscription: false,
description: 'Limited capabilities. Upgrade for full performance.' description: 'Limited capabilities. Upgrade for full performance.'