|
@@ -685,6 +685,10 @@ const queryArticle = async (
|
|
|
contentDesc.value = contentDesc.value.replaceAll(title3, title2);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ if (contentDesc.value.indexOf("</think>") !== -1) {
|
|
|
+ contentDesc.value = contentDesc.value.slice(contentDesc.value.indexOf("</think>")+8)
|
|
|
+ }
|
|
|
if (!item) {
|
|
|
contentDesc.value = contentDesc.value.replaceAll(title2, "");
|
|
|
contentDesc.value = contentDesc.value.replaceAll(title5, "");
|
|
@@ -1086,7 +1090,7 @@ const chapterRefrash = async (
|
|
|
`---${ctitle}---`,
|
|
|
`**${ctitle}**`
|
|
|
);
|
|
|
-
|
|
|
+ console.log("1111111---------------------")
|
|
|
if (!need) {
|
|
|
if (
|
|
|
contentDesc.value.length > ctitle.length + 4 &&
|
|
@@ -1232,6 +1236,10 @@ const queryThirdArticle = async (
|
|
|
contentDesc.value += rData.choices[0].delta.content
|
|
|
? rData.choices[0].delta.content
|
|
|
: "";
|
|
|
+ console.log("2222222222222")
|
|
|
+ if (contentDesc.value.indexOf("</think>") !== -1) {
|
|
|
+ contentDesc.value = contentDesc.value.slice(contentDesc.value.indexOf("</think>")+8)
|
|
|
+ }
|
|
|
if (citem) {
|
|
|
contentDesc.value = contentDesc.value.replaceAll(
|
|
|
`---${citem.title}---`,
|