Ethan-Li commited on
Commit
be1a577
1 Parent(s): e6e09a9

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +61 -0
app.py ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import openai
2
+ import os
3
+ import gradio as gr
4
+
5
+ openai.api_key = os.environ.get("OPENAI_API_KEY")
6
+
7
+
8
+ class Conversation:
9
+ def __init__(self, prompt, num_of_round):
10
+ self.prompt = prompt
11
+ self.num_of_round = num_of_round
12
+ self.messages = []
13
+ self.messages.append({"role": "system", "content": self.prompt})
14
+
15
+ def ask(self, question):
16
+ try:
17
+ self.messages.append({"role": "user", "content": question})
18
+ response = openai.ChatCompletion.create(
19
+ model="gpt-3.5-turbo",
20
+ messages=self.messages,
21
+ temperature=0.5,
22
+ max_tokens=2048,
23
+ top_p=1,
24
+ )
25
+ except Exception as e:
26
+ print(e)
27
+ return e
28
+
29
+ message = response["choices"][0]["message"]["content"]
30
+ self.messages.append({"role": "assistant", "content": message})
31
+
32
+ if len(self.messages) > self.num_of_round * 2 + 1:
33
+ del self.messages[1:3]
34
+ return message
35
+
36
+
37
+ prompt = """你的回答需要满足以下要求:
38
+ 1. 你的回答必须是中文
39
+ 2. 回答限制在10000个字以内"""
40
+
41
+ conv = Conversation(prompt, 5)
42
+
43
+
44
+ def predict(input, history=[]):
45
+ history.append(input)
46
+ response = conv.ask(input)
47
+ history.append(response)
48
+ responses = [(u, b) for u, b in zip(history[::2], history[1::2])]
49
+ return responses, history
50
+
51
+
52
+ with gr.Blocks(css="#chatbot{height:350px} .overflow-y-auto{height:500px}") as demo:
53
+ chatbot = gr.Chatbot(elem_id="chatbot")
54
+ state = gr.State([])
55
+
56
+ with gr.Row():
57
+ txt = gr.Textbox(show_label=False, placeholder="Enter text and press enter").style(container=False)
58
+
59
+ txt.submit(predict, [txt, state], [chatbot, state])
60
+
61
+ demo.launch()