From 8d9d9405ea1f433b95ba1640b86c9bf8570b6167 Mon Sep 17 00:00:00 2001 From: Chuck1sn Date: Thu, 22 May 2025 16:01:02 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9F=A5=E8=B7=AF=E6=99=BA=E8=83=BD=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/AiChatView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/AiChatView.vue b/frontend/src/views/AiChatView.vue index 384816b..7930207 100644 --- a/frontend/src/views/AiChatView.vue +++ b/frontend/src/views/AiChatView.vue @@ -97,7 +97,7 @@ const chatElements = computed(() => { return messages.value.map((message, index) => { return { content: message, - username: index % 2 === 0 ? user.username : "DeepSeek", + username: index % 2 === 0 ? user.username : "知路智能体", isUser: index % 2 === 0, }; });