feat(支持rar格式与7z格式解压)
This commit is contained in:
parent
10ea3daaa5
commit
a7c857d4d9
@ -1,3 +1,10 @@
|
|||||||
gradio>=3.23
|
gradio>=3.23
|
||||||
requests[socks]
|
requests[socks]~=2.28.2
|
||||||
mdtex2html
|
mdtex2html~=1.2.0
|
||||||
|
|
||||||
|
markdown~=3.4.3
|
||||||
|
latex2mathml~=3.75.1
|
||||||
|
numpy~=1.21.6
|
||||||
|
|
||||||
|
rarfile~=4.0
|
||||||
|
py7zr~=0.20.4
|
61
toolbox.py
61
toolbox.py
@ -2,6 +2,7 @@ import markdown, mdtex2html, threading, importlib, traceback
|
|||||||
from show_math import convert as convert_math
|
from show_math import convert as convert_math
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
|
|
||||||
|
|
||||||
def predict_no_ui_but_counting_down(i_say, i_say_show_user, chatbot, top_p, temperature, history=[], sys_prompt=''):
|
def predict_no_ui_but_counting_down(i_say, i_say_show_user, chatbot, top_p, temperature, history=[], sys_prompt=''):
|
||||||
"""
|
"""
|
||||||
调用简单的predict_no_ui接口,但是依然保留了些许界面心跳功能,当对话太长时,会自动采用二分法截断
|
调用简单的predict_no_ui接口,但是依然保留了些许界面心跳功能,当对话太长时,会自动采用二分法截断
|
||||||
@ -13,11 +14,13 @@ def predict_no_ui_but_counting_down(i_say, i_say_show_user, chatbot, top_p, temp
|
|||||||
# 多线程的时候,需要一个mutable结构在不同线程之间传递信息
|
# 多线程的时候,需要一个mutable结构在不同线程之间传递信息
|
||||||
# list就是最简单的mutable结构,我们第一个位置放gpt输出,第二个位置传递报错信息
|
# list就是最简单的mutable结构,我们第一个位置放gpt输出,第二个位置传递报错信息
|
||||||
mutable = [None, '']
|
mutable = [None, '']
|
||||||
|
|
||||||
# multi-threading worker
|
# multi-threading worker
|
||||||
def mt(i_say, history):
|
def mt(i_say, history):
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
mutable[0] = predict_no_ui(inputs=i_say, top_p=top_p, temperature=temperature, history=history, sys_prompt=sys_prompt)
|
mutable[0] = predict_no_ui(inputs=i_say, top_p=top_p, temperature=temperature, history=history,
|
||||||
|
sys_prompt=sys_prompt)
|
||||||
break
|
break
|
||||||
except ConnectionAbortedError as e:
|
except ConnectionAbortedError as e:
|
||||||
if len(history) > 0:
|
if len(history) > 0:
|
||||||
@ -29,13 +32,17 @@ def predict_no_ui_but_counting_down(i_say, i_say_show_user, chatbot, top_p, temp
|
|||||||
except TimeoutError as e:
|
except TimeoutError as e:
|
||||||
mutable[0] = '[Local Message] Failed with timeout.'
|
mutable[0] = '[Local Message] Failed with timeout.'
|
||||||
raise TimeoutError
|
raise TimeoutError
|
||||||
|
|
||||||
# 创建新线程发出http请求
|
# 创建新线程发出http请求
|
||||||
thread_name = threading.Thread(target=mt, args=(i_say, history)); thread_name.start()
|
thread_name = threading.Thread(target=mt, args=(i_say, history));
|
||||||
|
thread_name.start()
|
||||||
# 原来的线程则负责持续更新UI,实现一个超时倒计时,并等待新线程的任务完成
|
# 原来的线程则负责持续更新UI,实现一个超时倒计时,并等待新线程的任务完成
|
||||||
cnt = 0
|
cnt = 0
|
||||||
while thread_name.is_alive():
|
while thread_name.is_alive():
|
||||||
cnt += 1
|
cnt += 1
|
||||||
chatbot[-1] = (i_say_show_user, f"[Local Message] {mutable[1]}waiting gpt response {cnt}/{TIMEOUT_SECONDS*2*(MAX_RETRY+1)}"+''.join(['.']*(cnt%4)))
|
chatbot[-1] = (i_say_show_user,
|
||||||
|
f"[Local Message] {mutable[1]}waiting gpt response {cnt}/{TIMEOUT_SECONDS * 2 * (MAX_RETRY + 1)}" + ''.join(
|
||||||
|
['.'] * (cnt % 4)))
|
||||||
yield chatbot, history, '正常'
|
yield chatbot, history, '正常'
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
# 把gpt的输出从mutable中取出来
|
# 把gpt的输出从mutable中取出来
|
||||||
@ -43,6 +50,7 @@ def predict_no_ui_but_counting_down(i_say, i_say_show_user, chatbot, top_p, temp
|
|||||||
if gpt_say == '[Local Message] Failed with timeout.': raise TimeoutError
|
if gpt_say == '[Local Message] Failed with timeout.': raise TimeoutError
|
||||||
return gpt_say
|
return gpt_say
|
||||||
|
|
||||||
|
|
||||||
def write_results_to_file(history, file_name=None):
|
def write_results_to_file(history, file_name=None):
|
||||||
"""
|
"""
|
||||||
将对话记录history以Markdown格式写入文件中。如果没有指定文件名,则使用当前时间生成文件名。
|
将对话记录history以Markdown格式写入文件中。如果没有指定文件名,则使用当前时间生成文件名。
|
||||||
@ -62,6 +70,7 @@ def write_results_to_file(history, file_name=None):
|
|||||||
print(res)
|
print(res)
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
|
||||||
def regular_txt_to_markdown(text):
|
def regular_txt_to_markdown(text):
|
||||||
"""
|
"""
|
||||||
将普通文本转换为Markdown格式的文本。
|
将普通文本转换为Markdown格式的文本。
|
||||||
@ -71,10 +80,12 @@ def regular_txt_to_markdown(text):
|
|||||||
text = text.replace('\n\n\n', '\n\n')
|
text = text.replace('\n\n\n', '\n\n')
|
||||||
return text
|
return text
|
||||||
|
|
||||||
|
|
||||||
def CatchException(f):
|
def CatchException(f):
|
||||||
"""
|
"""
|
||||||
装饰器函数,捕捉函数f中的异常并封装到一个生成器中返回,并显示到聊天当中。
|
装饰器函数,捕捉函数f中的异常并封装到一个生成器中返回,并显示到聊天当中。
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@wraps(f)
|
@wraps(f)
|
||||||
def decorated(txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
|
def decorated(txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
|
||||||
try:
|
try:
|
||||||
@ -84,16 +95,21 @@ def CatchException(f):
|
|||||||
from toolbox import get_conf
|
from toolbox import get_conf
|
||||||
proxies, = get_conf('proxies')
|
proxies, = get_conf('proxies')
|
||||||
tb_str = regular_txt_to_markdown(traceback.format_exc())
|
tb_str = regular_txt_to_markdown(traceback.format_exc())
|
||||||
chatbot[-1] = (chatbot[-1][0], f"[Local Message] 实验性函数调用出错: \n\n {tb_str} \n\n 当前代理可用性: \n\n {check_proxy(proxies)}")
|
chatbot[-1] = (
|
||||||
|
chatbot[-1][0], f"[Local Message] 实验性函数调用出错: \n\n {tb_str} \n\n 当前代理可用性: \n\n {check_proxy(proxies)}")
|
||||||
yield chatbot, history, f'异常 {e}'
|
yield chatbot, history, f'异常 {e}'
|
||||||
|
|
||||||
return decorated
|
return decorated
|
||||||
|
|
||||||
|
|
||||||
def report_execption(chatbot, history, a, b):
|
def report_execption(chatbot, history, a, b):
|
||||||
"""
|
"""
|
||||||
向chatbot中添加错误信息
|
向chatbot中添加错误信息
|
||||||
"""
|
"""
|
||||||
chatbot.append((a, b))
|
chatbot.append((a, b))
|
||||||
history.append(a); history.append(b)
|
history.append(a);
|
||||||
|
history.append(b)
|
||||||
|
|
||||||
|
|
||||||
def text_divide_paragraph(text):
|
def text_divide_paragraph(text):
|
||||||
"""
|
"""
|
||||||
@ -110,6 +126,7 @@ def text_divide_paragraph(text):
|
|||||||
text = "</br>".join(lines)
|
text = "</br>".join(lines)
|
||||||
return text
|
return text
|
||||||
|
|
||||||
|
|
||||||
def markdown_convertion(txt):
|
def markdown_convertion(txt):
|
||||||
"""
|
"""
|
||||||
将Markdown格式的文本转换为HTML格式。如果包含数学公式,则先将公式转换为HTML格式。
|
将Markdown格式的文本转换为HTML格式。如果包含数学公式,则先将公式转换为HTML格式。
|
||||||
@ -151,6 +168,7 @@ def extract_archive(file_path, dest_dir):
|
|||||||
import zipfile
|
import zipfile
|
||||||
import tarfile
|
import tarfile
|
||||||
import os
|
import os
|
||||||
|
|
||||||
# Get the file extension of the input file
|
# Get the file extension of the input file
|
||||||
file_extension = os.path.splitext(file_path)[1]
|
file_extension = os.path.splitext(file_path)[1]
|
||||||
|
|
||||||
@ -164,9 +182,28 @@ def extract_archive(file_path, dest_dir):
|
|||||||
with tarfile.open(file_path, 'r:*') as tarobj:
|
with tarfile.open(file_path, 'r:*') as tarobj:
|
||||||
tarobj.extractall(path=dest_dir)
|
tarobj.extractall(path=dest_dir)
|
||||||
print("Successfully extracted tar archive to {}".format(dest_dir))
|
print("Successfully extracted tar archive to {}".format(dest_dir))
|
||||||
|
|
||||||
|
elif file_extension == '.rar':
|
||||||
|
# 这是个第三方库,需要预先pip install rarfile
|
||||||
|
# 此外,Windows上还需要安装winrar软件,配置其Path环境变量,如"C:\Program Files\WinRAR"才可以正常运行
|
||||||
|
try:
|
||||||
|
import rarfile
|
||||||
|
with rarfile.RarFile(file_path) as rf:
|
||||||
|
rf.extractall(path=dest_dir)
|
||||||
|
print("Successfully extracted rar archive to {}".format(dest_dir))
|
||||||
|
except:
|
||||||
|
print("rar格式需要安装额外依赖")
|
||||||
|
elif file_extension == '.7z':
|
||||||
|
try:
|
||||||
|
import py7zr
|
||||||
|
with py7zr.SevenZipFile(file_path, mode='r') as f:
|
||||||
|
f.extractall(path=dest_dir)
|
||||||
|
except:
|
||||||
|
print("7z格式需要安装额外依赖")
|
||||||
else:
|
else:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
def find_recent_files(directory):
|
def find_recent_files(directory):
|
||||||
"""
|
"""
|
||||||
me: find files that is created with in one minutes under a directory with python, write a function
|
me: find files that is created with in one minutes under a directory with python, write a function
|
||||||
@ -193,8 +230,10 @@ def on_file_uploaded(files, chatbot, txt):
|
|||||||
if len(files) == 0: return chatbot, txt
|
if len(files) == 0: return chatbot, txt
|
||||||
import shutil, os, time, glob
|
import shutil, os, time, glob
|
||||||
from toolbox import extract_archive
|
from toolbox import extract_archive
|
||||||
try: shutil.rmtree('./private_upload/')
|
try:
|
||||||
except: pass
|
shutil.rmtree('./private_upload/')
|
||||||
|
except:
|
||||||
|
pass
|
||||||
time_tag = time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime())
|
time_tag = time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime())
|
||||||
os.makedirs(f'private_upload/{time_tag}', exist_ok=True)
|
os.makedirs(f'private_upload/{time_tag}', exist_ok=True)
|
||||||
for file in files:
|
for file in files:
|
||||||
@ -218,12 +257,15 @@ def on_report_generated(files, chatbot):
|
|||||||
chatbot.append(['汇总报告如何远程获取?', '汇总报告已经添加到右侧文件上传区,请查收。'])
|
chatbot.append(['汇总报告如何远程获取?', '汇总报告已经添加到右侧文件上传区,请查收。'])
|
||||||
return report_files, chatbot
|
return report_files, chatbot
|
||||||
|
|
||||||
|
|
||||||
def get_conf(*args):
|
def get_conf(*args):
|
||||||
# 建议您复制一个config_private.py放自己的秘密, 如API和代理网址, 避免不小心传github被别人看到
|
# 建议您复制一个config_private.py放自己的秘密, 如API和代理网址, 避免不小心传github被别人看到
|
||||||
res = []
|
res = []
|
||||||
for arg in args:
|
for arg in args:
|
||||||
try: r = getattr(importlib.import_module('config_private'), arg)
|
try:
|
||||||
except: r = getattr(importlib.import_module('config'), arg)
|
r = getattr(importlib.import_module('config_private'), arg)
|
||||||
|
except:
|
||||||
|
r = getattr(importlib.import_module('config'), arg)
|
||||||
res.append(r)
|
res.append(r)
|
||||||
# 在读取API_KEY时,检查一下是不是忘了改config
|
# 在读取API_KEY时,检查一下是不是忘了改config
|
||||||
if arg == 'API_KEY' and len(r) != 51:
|
if arg == 'API_KEY' and len(r) != 51:
|
||||||
@ -231,6 +273,7 @@ def get_conf(*args):
|
|||||||
"(如果您刚更新过代码,请确保旧版config_private文件中没有遗留任何新增键值)"
|
"(如果您刚更新过代码,请确保旧版config_private文件中没有遗留任何新增键值)"
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
|
||||||
def clear_line_break(txt):
|
def clear_line_break(txt):
|
||||||
txt = txt.replace('\n', ' ')
|
txt = txt.replace('\n', ' ')
|
||||||
txt = txt.replace(' ', ' ')
|
txt = txt.replace(' ', ' ')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user