doctorsafe commited on
Commit
98158e8
·
1 Parent(s): 97e0dbc

Delete toolbox.py

Browse files
Files changed (1) hide show
  1. toolbox.py +0 -187
toolbox.py DELETED
@@ -1,187 +0,0 @@
1
- import markdown, mdtex2html, threading
2
- from show_math import convert as convert_math
3
- from functools import wraps
4
-
5
- def predict_no_ui_but_counting_down(i_say, i_say_show_user, chatbot, top_p, temperature, history=[]):
6
- """
7
- 调用简单的predict_no_ui接口,但是依然保留了些许界面心跳功能,当对话太长时,会自动采用二分法截断
8
- """
9
- import time
10
- try: from config_private import TIMEOUT_SECONDS, MAX_RETRY
11
- except: from config import TIMEOUT_SECONDS, MAX_RETRY
12
- from predict import predict_no_ui
13
- # 多线程的时候,需要一个mutable结构在不同线程之间传递信息
14
- # list就是最简单的mutable结构,我们第一个位置放gpt输出,第二个位置传递报错信息
15
- mutable = [None, '']
16
- # multi-threading worker
17
- def mt(i_say, history):
18
- while True:
19
- try:
20
- mutable[0] = predict_no_ui(inputs=i_say, top_p=top_p, temperature=temperature, history=history)
21
- break
22
- except ConnectionAbortedError as e:
23
- if len(history) > 0:
24
- history = [his[len(his)//2:] for his in history if his is not None]
25
- mutable[1] = 'Warning! History conversation is too long, cut into half. '
26
- else:
27
- i_say = i_say[:len(i_say)//2]
28
- mutable[1] = 'Warning! Input file is too long, cut into half. '
29
- except TimeoutError as e:
30
- mutable[0] = '[Local Message] Failed with timeout'
31
- # 创建新线程发出http请求
32
- thread_name = threading.Thread(target=mt, args=(i_say, history)); thread_name.start()
33
- # 原来的线程则负责持续更新UI,实现一个超时倒计时,并等待新线程的任务完成
34
- cnt = 0
35
- while thread_name.is_alive():
36
- cnt += 1
37
- chatbot[-1] = (i_say_show_user, f"[Local Message] {mutable[1]}waiting gpt response {cnt}/{TIMEOUT_SECONDS*2*(MAX_RETRY+1)}"+''.join(['.']*(cnt%4)))
38
- yield chatbot, history, '正常'
39
- time.sleep(1)
40
- # 把gpt的输出从mutable中取出来
41
- gpt_say = mutable[0]
42
- return gpt_say
43
-
44
- def write_results_to_file(history, file_name=None):
45
- """
46
- 将对话记录history以Markdown格式写入文件中。如果没有指定文件名,则使用当前时间生成文件名。
47
- """
48
- import os, time
49
- if file_name is None:
50
- # file_name = time.strftime("chatGPT分析报告%Y-%m-%d-%H-%M-%S", time.localtime()) + '.md'
51
- file_name = 'chatGPT分析报告' + time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime()) + '.md'
52
- os.makedirs('./gpt_log/', exist_ok=True)
53
- with open(f'./gpt_log/{file_name}', 'w', encoding = 'utf8') as f:
54
- f.write('# chatGPT 分析报告\n')
55
- for i, content in enumerate(history):
56
- if i%2==0: f.write('## ')
57
- f.write(content)
58
- f.write('\n\n')
59
- res = '以上材料已经被写入' + os.path.abspath(f'./gpt_log/{file_name}')
60
- print(res)
61
- return res
62
-
63
- def regular_txt_to_markdown(text):
64
- """
65
- 将普通文本转换为Markdown格式的文本。
66
- """
67
- text = text.replace('\n', '\n\n')
68
- text = text.replace('\n\n\n', '\n\n')
69
- text = text.replace('\n\n\n', '\n\n')
70
- return text
71
-
72
- def CatchException(f):
73
- """
74
- 装饰器函数,捕捉函数f中的异常并封装到一个生成器中返回,并显示到聊天当中。
75
- """
76
- @wraps(f)
77
- def decorated(txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT):
78
- try:
79
- yield from f(txt, top_p, temperature, chatbot, history, systemPromptTxt, WEB_PORT)
80
- except Exception as e:
81
- import traceback
82
- from check_proxy import check_proxy
83
- try: from config_private import proxies
84
- except: from config import proxies
85
- tb_str = regular_txt_to_markdown(traceback.format_exc())
86
- chatbot[-1] = (chatbot[-1][0], f"[Local Message] 实验性函数调用出错: \n\n {tb_str} \n\n 当前代理可用性: \n\n {check_proxy(proxies)}")
87
- yield chatbot, history, f'异常 {e}'
88
- return decorated
89
-
90
- def report_execption(chatbot, history, a, b):
91
- """
92
- 向chatbot中添加错误信息
93
- """
94
- chatbot.append((a, b))
95
- history.append(a); history.append(b)
96
-
97
- def text_divide_paragraph(text):
98
- """
99
- 将文本按照段落分隔符分割开,生成带有段落标签的HTML代码。
100
- """
101
- if '```' in text:
102
- # careful input
103
- return text
104
- else:
105
- # wtf input
106
- lines = text.split("\n")
107
- for i, line in enumerate(lines):
108
- if i!=0: lines[i] = "<p>"+lines[i].replace(" ", "&nbsp;")+"</p>"
109
- text = "".join(lines)
110
- return text
111
-
112
- def markdown_convertion(txt):
113
- """
114
- 将Markdown格式的文本转换为HTML格式。如果包含数学公式,则先将公式转换为HTML格式。
115
- """
116
- if ('$' in txt) and ('```' not in txt):
117
- return markdown.markdown(txt,extensions=['fenced_code','tables']) + '<br><br>' + \
118
- markdown.markdown(convert_math(txt, splitParagraphs=False),extensions=['fenced_code','tables'])
119
- else:
120
- return markdown.markdown(txt,extensions=['fenced_code','tables'])
121
-
122
-
123
- def format_io(self, y):
124
- """
125
- 将输入和输出解析为HTML格式。将y中最后一项的输入部分段落化,并将输出部分的Markdown和数学公式转换为HTML格式。
126
- """
127
- if y is None: return []
128
- i_ask, gpt_reply = y[-1]
129
- i_ask = text_divide_paragraph(i_ask) # 输入部分太自由,预处理一波
130
- y[-1] = (
131
- None if i_ask is None else markdown.markdown(i_ask, extensions=['fenced_code','tables']),
132
- None if gpt_reply is None else markdown_convertion(gpt_reply)
133
- )
134
- return y
135
-
136
-
137
- def find_free_port():
138
- """
139
- 返回当前系统中可用的未使用端口。
140
- """
141
- import socket
142
- from contextlib import closing
143
- with closing(socket.socket(socket.AF_INET, socket.SOCK_STREAM)) as s:
144
- s.bind(('', 0))
145
- s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
146
- return s.getsockname()[1]
147
-
148
-
149
- def extract_archive(file_path, dest_dir):
150
- import zipfile
151
- import tarfile
152
- import os
153
- # Get the file extension of the input file
154
- file_extension = os.path.splitext(file_path)[1]
155
-
156
- # Extract the archive based on its extension
157
- if file_extension == '.zip':
158
- with zipfile.ZipFile(file_path, 'r') as zipobj:
159
- zipobj.extractall(path=dest_dir)
160
- print("Successfully extracted zip archive to {}".format(dest_dir))
161
-
162
- elif file_extension in ['.tar', '.gz', '.bz2']:
163
- with tarfile.open(file_path, 'r:*') as tarobj:
164
- tarobj.extractall(path=dest_dir)
165
- print("Successfully extracted tar archive to {}".format(dest_dir))
166
- else:
167
- return
168
-
169
- def find_recent_files(directory):
170
- """
171
- me: find files that is created with in one minutes under a directory with python, write a function
172
- gpt: here it is!
173
- """
174
- import os
175
- import time
176
- current_time = time.time()
177
- one_minute_ago = current_time - 60
178
- recent_files = []
179
-
180
- for filename in os.listdir(directory):
181
- file_path = os.path.join(directory, filename)
182
- if file_path.endswith('.log'): continue
183
- created_time = os.path.getctime(file_path)
184
- if created_time >= one_minute_ago:
185
- recent_files.append(file_path)
186
-
187
- return recent_files