Elfe commited on
Commit
1487f34
1 Parent(s): 99524b8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -1,5 +1,7 @@
1
  import gradio as gr
2
 
 
 
3
  # 修改本函数,来实现你自己的 chatbot
4
  # p: 对机器人说话的内容
5
  # qid: 当前消息的唯一标识。例如 `'bxqid-cManAtRMszw...'`。由平台生成并传递给机器人,以便机器人区分单个问题(写日志、追踪调试、异步回调等)。同步调用可忽略。
@@ -7,7 +9,8 @@ import gradio as gr
7
  # 返回值:[type, content]
8
  # 详见 https://huggingface.co/spaces/baixing/hackathon_test/blob/main/bot-api.md
9
  def chat(p, qid, uid):
10
- return ["text", f"我听到你刚说:{p}"]
 
11
 
12
  iface = gr.Interface(fn=chat,
13
  inputs=["text", "text", "text"],
 
1
  import gradio as gr
2
 
3
+ count = 0
4
+
5
  # 修改本函数,来实现你自己的 chatbot
6
  # p: 对机器人说话的内容
7
  # qid: 当前消息的唯一标识。例如 `'bxqid-cManAtRMszw...'`。由平台生成并传递给机器人,以便机器人区分单个问题(写日志、追踪调试、异步回调等)。同步调用可忽略。
 
9
  # 返回值:[type, content]
10
  # 详见 https://huggingface.co/spaces/baixing/hackathon_test/blob/main/bot-api.md
11
  def chat(p, qid, uid):
12
+ count++
13
+ return ["text", f"{count} 我听到你刚说:{p}"]
14
 
15
  iface = gr.Interface(fn=chat,
16
  inputs=["text", "text", "text"],