|
@@ -257,10 +257,22 @@ const simulateStreamResponse = async () => {
|
|
|
|
|
|
if (data.data === true) {
|
|
|
|
|
|
- // accumulatedText = '<think>' + accumulatedText;
|
|
|
- console.log('数据流结束',accumulatedText);
|
|
|
+ // 检查是否存在</think>标签但缺少开始标签
|
|
|
+ const thinkEndIndex = accumulatedText.indexOf('</think>');
|
|
|
+ if (thinkEndIndex !== -1) {
|
|
|
+ // 找到</think>标签的位置,在其对应内容的开头添加<think>标签
|
|
|
+ const beforeThinkEnd = accumulatedText.substring(0, thinkEndIndex + 8); // 包含</think>
|
|
|
+ const afterThinkEnd = accumulatedText.substring(thinkEndIndex + 8);
|
|
|
+
|
|
|
+ if (!beforeThinkEnd.includes('<think>')) {
|
|
|
+ accumulatedText = '<think>' + beforeThinkEnd + afterThinkEnd;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ console.log('数据流结束',accumulatedText);
|
|
|
+
|
|
|
// 检查是否包含<think>标签
|
|
|
- if (accumulatedText.startsWith('<think>') && accumulatedText.endsWith('</think>')) {
|
|
|
+ if (accumulatedText.includes('<think>') && accumulatedText.includes('</think>')) {
|
|
|
// 如果是think标签内容,直接显示原文
|
|
|
messages.value[messageIndex].content = accumulatedText;
|
|
|
} else {
|
|
@@ -373,25 +385,21 @@ const getHistoryChat = async (historyId) => {
|
|
|
let answerContent = message.answerContent
|
|
|
let formattedAnswer = ''
|
|
|
|
|
|
- // 移除开头的 "data:"
|
|
|
- if (answerContent.startsWith('data:')) {
|
|
|
- answerContent = answerContent.substring(5)
|
|
|
- }
|
|
|
-
|
|
|
- // 尝试解析第一个 JSON 对象(包含实际回答)
|
|
|
- try {
|
|
|
- const firstBrace = answerContent.indexOf('{')
|
|
|
- const lastBrace = answerContent.indexOf('}{')
|
|
|
- if (firstBrace !== -1 && lastBrace !== -1) {
|
|
|
- const jsonStr = answerContent.substring(firstBrace, lastBrace + 1)
|
|
|
- const jsonData = JSON.parse(jsonStr)
|
|
|
- if (jsonData.data && jsonData.data.answer) {
|
|
|
- formattedAnswer = jsonData.data.answer
|
|
|
+ // 按照 data: 分割字符串
|
|
|
+ const responses = answerContent.split('data:')
|
|
|
+
|
|
|
+ // 遍历所有分割后的响应
|
|
|
+ for (const response of responses) {
|
|
|
+ if (response.trim() && !response.includes('"data": true')) {
|
|
|
+ try {
|
|
|
+ const jsonData = JSON.parse(response.trim())
|
|
|
+ if (jsonData.data && jsonData.data.answer) {
|
|
|
+ formattedAnswer += jsonData.data.answer
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ console.warn('解析单条回答内容失败:', e)
|
|
|
}
|
|
|
}
|
|
|
- } catch (e) {
|
|
|
- console.warn('解析回答内容失败:', e)
|
|
|
- formattedAnswer = answerContent
|
|
|
}
|
|
|
|
|
|
// 如果没有成功解析出任何内容,使用原始内容
|