fin update

This commit is contained in:
锦恢 2025-07-15 00:09:51 +08:00
parent f27eb4cf97
commit 0ad95aaf60

View File

@ -78,7 +78,7 @@ const resultMarkdown = computed(() => {
return markdownToHtml(lastToolCallResponse.toString()); return markdownToHtml(lastToolCallResponse.toString());
} }
const rawText = lastToolCallResponse.content.map(c => c.text).join('\n'); const rawText = lastToolCallResponse.content.map(c => c.text).join('\n\n');
const html = markdownToHtml(rawText); const html = markdownToHtml(rawText);
return html; return html;
}) })