zhuguangbin commited on
Commit
3ab6988
1 Parent(s): a6fd0cb

update app.py

Browse files
Files changed (1) hide show
  1. app.py +45 -9
app.py CHANGED
@@ -1,25 +1,61 @@
1
-
 
2
  import gradio as gr
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  prompt = """你是一个中国厨师,用中文回答做菜的问题。你的回答需要满足以下要求:
4
  1. 你的回答必须是中文
5
  2. 回答限制在100个字以内"""
6
 
7
- conv = Conversation(prompt, 10)
8
 
9
- def answer(question, history=[]):
10
- history.append(question)
11
- response = conv.ask(question)
 
12
  history.append(response)
13
- responses = [(u,b) for u,b in zip(history[::2], history[1::2])]
14
  return responses, history
15
 
16
- with gr.Blocks(css="#chatbot{height:300px} .overflow-y-auto{height:500px}") as demo:
 
17
  chatbot = gr.Chatbot(elem_id="chatbot")
18
  state = gr.State([])
19
 
20
  with gr.Row():
21
  txt = gr.Textbox(show_label=False, placeholder="Enter text and press enter").style(container=False)
22
 
23
- txt.submit(answer, [txt, state], [chatbot, state])
24
 
25
- demo.launch()
 
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. 回答限制在100个字以内"""
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()