Yuvalamitay commited on
Commit
ca07a73
·
verified ·
1 Parent(s): df16d86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -8,6 +8,8 @@ def yes_no(message, history):
8
  responses = ["Yes", "No"]
9
  return random.choice(responses)
10
 
11
- chatbot = gr.ChatInterface(yes_no, type = "messages", title="The best chat bot", description="Ask it Yes or No questions", theme='gstaff/sketch')
 
12
 
13
  chatbot.launch()
 
 
8
  responses = ["Yes", "No"]
9
  return random.choice(responses)
10
 
11
+ chatbot = gr.ChatInterface(yes_no, type = "messages", title="The best chat bot", description="Ask it Yes or No questions")
12
+ background = gr.Interface(theme='gstaff/sketch')
13
 
14
  chatbot.launch()
15
+ background.launch()