UserPotato12397 commited on
Commit
bf616c6
·
verified ·
1 Parent(s): 88902bd

Attempt to return random message

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -1,7 +1,9 @@
1
  import gradio as gr
 
2
 
3
  def echo(message, history):
4
- return message
 
5
 
6
  chatbot = gr.ChatInterface(echo, type = "messages")
7
 
 
1
  import gradio as gr
2
+ import random
3
 
4
  def echo(message, history):
5
+ choices = ["yes","no"]
6
+ return random.choice(choices)
7
 
8
  chatbot = gr.ChatInterface(echo, type = "messages")
9