* perf: html2md

* perf: index

* Add model log

* update next version

* log index
This commit is contained in:
Archer
2025-12-17 17:44:38 +08:00
committed by GitHub
parent abc2b6d20d
commit 463b02d127
17 changed files with 192 additions and 256 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
import { simpleMarkdownText } from '@fastgpt/global/common/string/markdown';
import { WorkerNameEnum, runWorker } from '../../worker/utils';
import { type ImageType } from '../../worker/readFile/type';
@@ -8,5 +7,5 @@ export const htmlToMarkdown = async (html?: string | null) => {
imageList: ImageType[];
}>(WorkerNameEnum.htmlStr2Md, { html: html || '' });
return simpleMarkdownText(md.rawText);
return md.rawText;
};