We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9233b6f commit aaaf3c9Copy full SHA for aaaf3c9
src/views/chat/index.vue
@@ -56,7 +56,7 @@ const currentChatModel = computed(() => nowSelectChatModel.value ?? currentChatH
56
57
const currentNavIndexRef = ref<number>(-1)
58
59
-const isVisionModel = computed(() => currentChatModel.value && currentChatModel.value?.includes('vision'))
+const isVisionModel = computed(() => currentChatModel.value && (currentChatModel.value?.includes('vision') || ['gpt-4-turbo', 'gpt-4-turbo-2024-04-09'].includes(currentChatModel.value)))
60
61
let loadingms: MessageReactive
62
let allmsg: MessageReactive
0 commit comments