Browse Source

feat: add gpt-4o model

Jacky 1 year ago
parent
commit
189f623994
1 changed files with 3 additions and 0 deletions
  1. 3 0
      app/src/views/preference/OpenAISettings.vue

+ 3 - 0
app/src/views/preference/OpenAISettings.vue

@@ -6,6 +6,9 @@ const data: Settings = inject('data')!
 const errors: Record<string, Record<string, string>> = inject('errors') as Record<string, Record<string, string>>
 
 const models = shallowRef([
+  {
+    value: 'gpt-4o',
+  },
   {
     value: 'gpt-4-1106-preview',
   },