-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathgradio_demo.py
110 lines (99 loc) · 3.69 KB
/
gradio_demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import gradio as gr
import mdtex2html, requests
from plugins import *
from urllib.parse import quote as url_encode
def postprocess(self, y):
if y is None:
return []
for i, (message, response) in enumerate(y):
y[i] = (
None if message is None else mdtex2html.convert((message)),
None if response is None else mdtex2html.convert(response),
)
return y
gr.Chatbot.postprocess = postprocess
def parse_text(text):
"""copy from https://github.com/GaiZhenbiao/ChuanhuChatGPT/"""
lines = text.split("\n")
lines = [line for line in lines if line != ""]
count = 0
for i, line in enumerate(lines):
if "```" in line:
count += 1
items = line.split('`')
if count % 2 == 1:
lines[i] = f'<pre><code class="language-{items[-1]}">'
else:
lines[i] = f'<br></code></pre>'
else:
if i > 0:
if count % 2 == 1:
line = line.replace("`", "\`")
line = line.replace("<", "<")
line = line.replace(">", ">")
line = line.replace(" ", " ")
line = line.replace("*", "*")
line = line.replace("_", "_")
line = line.replace("-", "-")
line = line.replace(".", ".")
line = line.replace("!", "!")
line = line.replace("(", "(")
line = line.replace(")", ")")
line = line.replace("$", "$")
lines[i] = "<br>"+line
text = "".join(lines)
return text
def predict(input, chatbot, history, feature):
print(feature)
bool_feature = [False, False, False, False]
if 'Web' in feature:
bool_feature[0] = True
if 'Weather' in feature:
bool_feature[1] = True
if 'Date' in feature:
bool_feature[2] = True
if 'Markmap' in feature:
bool_feature[3] = True
change_feature(bool_feature)
chatbot.append((parse_text(input), ""))
url = f"{get_config()['basic']['host']}:8003/api/chat?prompt={url_encode(input)}"
response = requests.get(url, stream=True)
resp = ""
for chunk in response.iter_content(chunk_size=1024):
resp = chunk.decode('utf-8', 'ignore').replace("data: ",'')
chatbot[-1] = (parse_text(input), parse_text(resp))
history = [parse_text(input), parse_text(resp)]
yield chatbot, history
def upload_file(files):
file_paths = [file.name for file in files]
print(file_paths)
url = f"{get_config()['basic']['host']}:8003/api/upload"
files = {'file': open(file_paths[0],'rb')}
requests.post(url=url,files=files)
return file_paths
def reset_user_input():
return gr.update(value='')
def reset_state():
requests.post(f"{get_config()['basic']['host']}:8003/api/delete")
return [], []
def change_feature(feature: list):
requests.post(f"{get_config()['basic']['host']}:8003/api/config?web={feature[0]}&weather={feature[1]}&date={feature[2]}&markmap={feature[3]}&sd=False")
with gr.Blocks() as demo:
with gr.Row():
with gr.Column(scale=1):
gr.HTML("""<h1>ChatGLM-6B-Engineering</h1>""")
feature = gr.CheckboxGroup(["Web", "Weather", "Date", "Markmap"], label="Feature", info="Choose the feature you want to use")
file_output = gr.File()
upload_button = gr.UploadButton("Upload File", file_count="multiple")
emptyBtn = gr.Button("Clear History")
with gr.Column(scale=5):
chatbot = gr.Chatbot()
user_input = gr.Textbox(show_label=False, lines=6, placeholder="Enter your question here.").style(container=False)
submitBtn = gr.Button("Submit", variant="primary")
history = gr.State([])
submitBtn.click(change_feature, [feature], show_progress=True)
submitBtn.click(predict, [user_input, chatbot, history, feature], [chatbot, history], show_progress=True)
submitBtn.click(reset_user_input, [], [user_input])
emptyBtn.click(reset_state, outputs=[chatbot, history], show_progress=True)
upload_button.upload(upload_file, upload_button, file_output)
demo.queue().launch(share=False)