ismaelfaro commited on
Commit
590e00a
1 Parent(s): 644237c

update gradio object

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -11,9 +11,8 @@ def poetchat(message, history):
11
 
12
  title = "chat with a AIpoet"
13
 
14
- app = gr.ChatInterface(poetchat, title=title, theme = 'Taithrah/Minimal')
15
 
16
-
17
- app.queue().launch()
18
 
19
 
 
11
 
12
  title = "chat with a AIpoet"
13
 
14
+ demo = gr.ChatInterface(poetchat, title=title, theme = 'Taithrah/Minimal')
15
 
16
+ demo.queue().launch()
 
17
 
18