PurpleStorm95 commited on
Commit
bf77835
·
verified ·
1 Parent(s): 5758f4c

magic eight iteration 4

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -6,8 +6,9 @@ def random_response(message, history):
6
  return random.choice(response_options)
7
 
8
  chatbot = gr.ChatInterface(
9
- respond,
10
  title = "Magic Eight Ball",
11
  description = "I can predict your future!"
12
  )
 
13
  chatbot.launch()
 
6
  return random.choice(response_options)
7
 
8
  chatbot = gr.ChatInterface(
9
+ random_response,
10
  title = "Magic Eight Ball",
11
  description = "I can predict your future!"
12
  )
13
+
14
  chatbot.launch()