TeahReichenbaum commited on
Commit
c808474
·
verified ·
1 Parent(s): 6696fb5

Description.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,6 +8,6 @@ def yesNoRandom(message,history):
8
  repsonse=["yes","no"]
9
  return random.choice(repsonse)
10
 
11
- chatbot = gr.ChatInterface(yesNoRandom, type = "messages", title = "Yes or No Bot")
12
 
13
  chatbot.launch()
 
8
  repsonse=["yes","no"]
9
  return random.choice(repsonse)
10
 
11
+ chatbot = gr.ChatInterface(yesNoRandom, type = "messages", title = "Yes or No Bot", description = "This chatbot randomly repsonds to questions with yes or no.")
12
 
13
  chatbot.launch()