Code4ueru commited on
Commit
657c838
·
verified ·
1 Parent(s): 28a4bc3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,7 +1,11 @@
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 = ["Mhm", "nah fam"]
6
+ random_choice = random.choice(choices)
7
+ print("Hello, World!")
8
+ return.message
9
 
10
  chatbot = gr.ChatInterface(echo, type = "messages")
11