diff --git a/README.md b/README.md index 4ef6d84..d57fad4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # ChatGPT Web Bot +重要提示:目前 `OpenAI` 开放的模型最高只有 `GPT-3`,和现在网页所使用的 `GPT-3.5` 或 `GPT-4` 是有很大差距的,需要等官方开放最新的模型接口。 + 使用 express 和 vue3 搭建的 ChartGPT 演示网页 ![cover](./docs/cover-2.png) diff --git a/src/components/business/Chat/index.vue b/src/components/business/Chat/index.vue index 0d194aa..0903a66 100644 --- a/src/components/business/Chat/index.vue +++ b/src/components/business/Chat/index.vue @@ -31,11 +31,12 @@ function initChat() { async function handleClear() { try { - const { message } = await clearConversations() - ms.success(message ?? 'Success') + await clearConversations() } catch (error) { ms.error('Clear failed, please try again later.') + } + finally { list.value = [] setTimeout(initChat, 100) }