mchiguma commited on
Commit
8960e0e
·
verified ·
1 Parent(s): fd2c6ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,11 +1,15 @@
1
  import gradio as gr
 
2
  #Import lines go at the top! Any libraries I need to import go up here^^
3
 
 
 
 
4
  def echo(message, history): # called echo because literally echoing
5
  return message
6
 
7
  print("Hello world")
8
- chatbot = gr.ChatInterface(echo, type = "messages")
9
  # defining my chatbot so that the user can interact and see their conversation history and send new messages
10
 
11
  chatbot.launch()
 
1
  import gradio as gr
2
+ import random
3
  #Import lines go at the top! Any libraries I need to import go up here^^
4
 
5
+ def yes_or_no(message, history):
6
+ return random.choice(['Yes', 'No'])
7
+
8
  def echo(message, history): # called echo because literally echoing
9
  return message
10
 
11
  print("Hello world")
12
+ chatbot = gr.ChatInterface(yes_or_no, type = "messages")
13
  # defining my chatbot so that the user can interact and see their conversation history and send new messages
14
 
15
  chatbot.launch()