bdragert27 commited on
Commit
41321f3
·
verified ·
1 Parent(s): 08ba2e0

added parameter to gr.ChatInterface

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ def yes_or_no(message, history):
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, see their conversation history, and send new messages
14
 
15
  chatbot.launch()
 
9
  # return message
10
 
11
  print("Hello world!")
12
+ chatbot = gr.ChatInterface(yes_or_no, type= "messages", title= "Virtual 8 Ball")
13
  #defining my chatbot so that the user can interact, see their conversation history, and send new messages
14
 
15
  chatbot.launch()