Skip to content

Commit fe61bef

Browse files
committed
misc: add o3-mini & update html title
1 parent 44c711f commit fe61bef

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<title>
6-
<%= productName %>
6+
<%= productName %> - 全功能、轻量级的 AI 客户端
77
</title>
88

99
<meta charset="utf-8">

src/components/ModelItem.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const avatar = computed<Avatar>(() => {
3434
const m = props.model
3535
if (m.includes('gpt-4')) return { type: 'svg', name: 'openai', hue: 307 }
3636
if (m.includes('gpt')) return { type: 'svg', name: 'openai', hue: 160 }
37-
if (m.startsWith('o1')) return { type: 'svg', name: 'openai', hue: 88 }
37+
if (m.startsWith('o1') || m.startsWith('o3')) return { type: 'svg', name: 'openai', hue: 88 }
3838
if (m.startsWith('claude') || m.startsWith('c-')) return { type: 'svg', name: 'claude-c' }
3939
if (m.startsWith('gemini')) return { type: 'svg', name: 'gemini-c' }
4040
if (m.startsWith('gemma')) return { type: 'svg', name: 'gemma-c' }

src/utils/values.ts

+2
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ const models: Model[] = [
138138
{ name: 'o1-mini-2024-09-12', inputTypes: InputTypes.textOnly },
139139
{ name: 'o1-preview', inputTypes: InputTypes.textOnly },
140140
{ name: 'o1-preview-2024-09-12', inputTypes: InputTypes.textOnly },
141+
{ name: 'o3-mini', inputTypes: InputTypes.textOnly },
142+
{ name: 'o3-mini-2025-01-31', inputTypes: InputTypes.textOnly },
141143
{ name: 'gpt-4o', inputTypes: InputTypes.commonVision },
142144
{ name: 'gpt-4o-2024-08-06', inputTypes: InputTypes.commonVision },
143145
{ name: 'gpt-4o-2024-05-13', inputTypes: InputTypes.commonVision },

src/version.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "v1.3.6",
3-
"versionCode": 10306,
2+
"version": "v1.3.7",
3+
"versionCode": 10307,
44
"forceUpdateFrom": 10301
55
}

0 commit comments

Comments
 (0)