|
@@ -334,12 +334,12 @@ const sendMessage1 = async () => {
|
|
|
// 获取可读流
|
|
|
const reader = response.body.getReader();
|
|
|
|
|
|
- // 创建消息对象
|
|
|
+ // 创建一条新的消息对象
|
|
|
const newMessage = {
|
|
|
- id: `msg_${Date.now()}`,
|
|
|
- type: 'response', // 初始类型为 response
|
|
|
- content: '', // 初始内容为空
|
|
|
- timestamp: Date.now(),
|
|
|
+ id: `response_${Date.now()}`,
|
|
|
+ type: 'response', // 消息类型
|
|
|
+ content: '',
|
|
|
+ timestamp: Date.now(), // 时间戳用来排序
|
|
|
};
|
|
|
|
|
|
// 将新消息添加到消息列表
|
|
@@ -365,7 +365,7 @@ const sendMessage1 = async () => {
|
|
|
matches.forEach((match) => {
|
|
|
try {
|
|
|
const data = JSON.parse(match);
|
|
|
- if (data.type === 'text' || data.type === 'thinking') {
|
|
|
+ if (data.type === 'text') {
|
|
|
// 找到当前消息对象并更新 content
|
|
|
const targetMessage = messageList.value.find((msg) => msg.id === newMessage.id);
|
|
|
if (targetMessage) {
|