|
@@ -262,14 +262,16 @@ watchEffect(() => {
|
|
|
|
|
|
// processStreamData(content);
|
|
|
|
|
|
- thinkStr.value = thinkValue && mdi.render(thinkValue || '');
|
|
|
+ // thinkStr.value = thinkValue && mdi.render(thinkValue || '');
|
|
|
+ thinkStr.value = thinkValue && mdi.render(thinkValue.replace(/信义/g, 'LibraAI') || '');
|
|
|
|
|
|
const value = mdi.render(tempStr);
|
|
|
// const value = mdi.render(processedValue(content));
|
|
|
|
|
|
const result = splitStringByChartDiv(value)
|
|
|
|
|
|
- markdownText.value = result
|
|
|
+ // markdownText.value = result
|
|
|
+ markdownText.value = result.map(item => item.replace(/信义/g, 'LibraAI'));
|
|
|
|
|
|
updateCharts();
|
|
|
})
|