yiyan-browser-agent 1.0.12 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/browser.js +10 -4
package/package.json
CHANGED
package/src/browser.js
CHANGED
|
@@ -514,13 +514,19 @@ class YiyanBrowser {
|
|
|
514
514
|
text = text.slice(markerIndex + outputMarker.length).trim();
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
// Remove everything after regenerate/suggestion markers (Yiyan's UI elements)
|
|
518
|
+
const cutMarkers = ['重新生成', '重新生成的', '换个回答', '输出更详细的'];
|
|
519
|
+
for (const marker of cutMarkers) {
|
|
520
|
+
const cutIndex = text.indexOf(marker);
|
|
521
|
+
if (cutIndex !== -1) {
|
|
522
|
+
text = text.slice(0, cutIndex).trim();
|
|
523
|
+
break;
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
|
|
517
527
|
return text
|
|
518
528
|
// Strip any remaining AI thinking blocks
|
|
519
529
|
.replace(/<think>[\s\S]*?<\/think>\n?/gi, '')
|
|
520
|
-
// Strip suggested follow-up questions
|
|
521
|
-
.replace(/请告诉我更多.*$/gm, '')
|
|
522
|
-
.replace(/再多给我一些.*$/gm, '')
|
|
523
|
-
.replace(/再多提供一些.*$/gm, '')
|
|
524
530
|
// Strip copy-code button artifacts
|
|
525
531
|
.replace(/^\d+(?:Copy|Run|Insert|Edit)\b.*$/gm, '')
|
|
526
532
|
// Collapse multiple blank lines
|