sarahrobe commited on
Commit
554b427
·
verified ·
1 Parent(s): 1f536f7

Added title

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,6 +5,6 @@ def random_response(message, history):
5
  response_options = ["yes", "no"]
6
  return random.choice(response_options)
7
 
8
- chatbot = gr.ChatInterface(random_response)
9
 
10
  chatbot.launch()
 
5
  response_options = ["yes", "no"]
6
  return random.choice(response_options)
7
 
8
+ chatbot = gr.ChatInterface(random_response, title = "Random Yes or No Chatbot")
9
 
10
  chatbot.launch()