Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import AutoTokenizer, AutoModel
|
2 |
+
import gradio as gr
|
3 |
+
|
4 |
+
|
5 |
+
tokenizer = AutoTokenizer.from_pretrained("THUDM/chatglm-6b", trust_remote_code=True)
|
6 |
+
model = AutoModel.from_pretrained("THUDM/chatglm-6b", trust_remote_code=True).half().cuda()
|
7 |
+
|
8 |
+
def predict(history, input):
|
9 |
+
response, history = model.chat(tokenizer, input, history)
|
10 |
+
return response,history
|
11 |
+
|
12 |
+
def bot(history):
|
13 |
+
response = "**That's cool!**"
|
14 |
+
history[-1][1] = response
|
15 |
+
return history
|
16 |
+
|
17 |
+
with gr.Blocks() as demo:
|
18 |
+
chatbot = gr.Chatbot([], elem_id="chatbot").style(height=750)
|
19 |
+
|
20 |
+
with gr.Row():
|
21 |
+
with gr.Column():
|
22 |
+
txt = gr.Textbox(
|
23 |
+
show_label=False,
|
24 |
+
placeholder="Enter text and press enter",
|
25 |
+
).style(container=False)
|
26 |
+
|
27 |
+
txt.submit(predict, [chatbot, txt], [chatbot, txt]).then(
|
28 |
+
bot, chatbot, chatbot
|
29 |
+
)
|
30 |
+
|
31 |
+
if __name__ == "__main__":
|
32 |
+
demo.launch()
|
33 |
+
|