refactor frontend (not done)

This commit is contained in:
bridge
2026-01-11 22:15:45 +08:00
parent f33cfab0d5
commit 08e28f52c7
2 changed files with 3 additions and 2 deletions

View File

@@ -96,6 +96,7 @@ export interface EventDTO {
related_avatar_ids: string[]; related_avatar_ids: string[];
is_major: boolean; is_major: boolean;
is_story: boolean; is_story: boolean;
created_at: number;
} }
export interface EventsResponseDTO { export interface EventsResponseDTO {

View File

@@ -27,7 +27,7 @@ const presets = [
name: '通义千问', name: '通义千问',
base_url: 'https://dashscope.aliyuncs.com/compatible-mode/v1', base_url: 'https://dashscope.aliyuncs.com/compatible-mode/v1',
model_name: 'qwen-plus', model_name: 'qwen-plus',
fast_model_name: 'qwen-turbo' fast_model_name: 'qwen-flash'
}, },
{ {
name: 'DeepSeek', name: 'DeepSeek',
@@ -174,7 +174,7 @@ onMounted(() => {
<input <input
v-model="config.fast_model_name" v-model="config.fast_model_name"
type="text" type="text"
placeholder="例如: gpt-3.5-turbo, qwen-turbo" placeholder="例如: gpt-3.5-turbo, qwen-flash"
class="input-field" class="input-field"
/> />
</div> </div>