consy commited on
Commit
1cd7db7
·
verified ·
1 Parent(s): 34f0e55

title and description try again

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -13,7 +13,10 @@ def magic_ball(message, history):
13
 
14
  print("Hello, World")
15
 
16
- chatbot = gr.ChatInterface(magic_ball, type='messages')
 
 
 
17
  #defining my chatbot so user can interact, see their conversation and send new messages
18
 
19
  chatbot.launch()
 
13
 
14
  print("Hello, World")
15
 
16
+ chatbot = gr.ChatInterface(magic_ball,
17
+ title = 'The Psychic Magic 8 Ball',
18
+ description = 'Ask any yes or no question to learn your future',
19
+ type='messages')
20
  #defining my chatbot so user can interact, see their conversation and send new messages
21
 
22
  chatbot.launch()