79 lines
3.6 KiB
Python
79 lines
3.6 KiB
Python
from toolbox import CatchException, report_exception, get_log_folder, gen_time_str
|
|
from toolbox import update_ui, promote_file_to_downloadzone, update_ui_lastest_msg, disable_auto_promotion
|
|
from crazy_functions.crazy_utils import request_gpt_model_in_new_thread_with_ui_alive
|
|
from crazy_functions.crazy_utils import request_gpt_model_multi_threads_with_very_awesome_ui_and_high_efficiency
|
|
from crazy_functions.crazy_utils import read_and_clean_pdf_text
|
|
from .pdf_fns.parse_pdf import parse_pdf, get_avail_grobid_url, translate_pdf
|
|
from shared_utils.colorful import *
|
|
import copy
|
|
import os
|
|
import math
|
|
import logging
|
|
|
|
|
|
@CatchException
|
|
def 解析PDF文档(txt, llm_kwargs, plugin_kwargs, chatbot, history, system_prompt, user_request):
|
|
|
|
disable_auto_promotion(chatbot)
|
|
# 基本信息:功能、贡献者
|
|
chatbot.append([
|
|
"函数插件功能?",
|
|
"解析PDF文档。函数插件贡献者: Xunge-Jiang"])
|
|
yield from update_ui(chatbot=chatbot, history=history) # 刷新界面
|
|
|
|
# 清空历史,以免输入溢出
|
|
history = []
|
|
|
|
from crazy_functions.crazy_utils import get_files_from_everything
|
|
success, file_manifest, project_folder = get_files_from_everything(txt, type='.pdf')
|
|
|
|
# success_md, file_manifest_md, _ = get_files_from_everything(txt, type='.md')
|
|
# success = success or success_md
|
|
# file_manifest += file_manifest_md
|
|
chatbot.append(["文件列表:", ", ".join([e.split('/')[-1] for e in file_manifest])])
|
|
yield from update_ui(chatbot=chatbot, history=history)
|
|
# 检测输入参数,如没有给定输入参数,直接退出
|
|
if not success:
|
|
if txt == "": txt = '空空如也的输入栏'
|
|
|
|
# 如果没找到任何文件
|
|
if len(file_manifest) == 0:
|
|
report_exception(chatbot, history,
|
|
a=f"解析项目: {txt}", b=f"找不到任何.pdf拓展名的文件: {txt}")
|
|
yield from update_ui(chatbot=chatbot, history=history) # 刷新界面
|
|
return
|
|
|
|
# 开始正式执行任务
|
|
yield from 解析PDF_基于MinerU(file_manifest, project_folder, llm_kwargs, plugin_kwargs, chatbot, history, system_prompt)
|
|
|
|
|
|
def 解析PDF_基于MinerU(file_manifest, project_folder, llm_kwargs, plugin_kwargs, chatbot, history, system_prompt):
|
|
import copy
|
|
import tiktoken
|
|
TOKEN_LIMIT_PER_FRAGMENT = 1024
|
|
generated_conclusion_files = []
|
|
generated_html_files = []
|
|
DST_LANG = "中文"
|
|
from crazy_functions.crazy_utils import mineru_interface
|
|
from crazy_functions.pdf_fns.report_gen_html import construct_html
|
|
mineru_handle = mineru_interface()
|
|
for index, fp in enumerate(file_manifest):
|
|
if fp.endswith('pdf'):
|
|
chatbot.append(["当前进度:", f"正在解析论文,请稍候。"]); yield from update_ui(chatbot=chatbot, history=history) # 刷新界面
|
|
fpp = yield from mineru_handle.mineru_parse_pdf(fp, chatbot, history)
|
|
promote_file_to_downloadzone(fpp, rename_file=os.path.basename(fpp)+'.mineru.md', chatbot=chatbot)
|
|
else:
|
|
chatbot.append(["当前论文无需解析:", fp]); yield from update_ui(chatbot=chatbot, history=history)
|
|
fpp = fp
|
|
# with open(fpp, 'r', encoding='utf8') as f:
|
|
# article_content = f.readlines()
|
|
# article_dict = markdown_to_dict(article_content)
|
|
# logging.info(article_dict)
|
|
# yield from translate_pdf(article_dict, llm_kwargs, chatbot, fp, generated_conclusion_files, TOKEN_LIMIT_PER_FRAGMENT, DST_LANG)
|
|
|
|
# chatbot.append(("给出输出文件清单", str(generated_conclusion_files)))
|
|
|
|
yield from update_ui(chatbot=chatbot, history=history) # 刷新界面
|
|
|
|
|