skylersterling commited on
Commit
8acccfc
·
verified ·
1 Parent(s): ecc5c07

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -88,8 +88,8 @@ customCSS = """
88
 
89
  with gr.Blocks(css=customCSS) as demo:
90
  gr.ChatInterface(
91
- generate,
92
  additional_inputs=additional_inputs,
93
  )
94
 
95
- demo.queue().launch(debug=True)
 
88
 
89
  with gr.Blocks(css=customCSS) as demo:
90
  gr.ChatInterface(
91
+ fn=generate,
92
  additional_inputs=additional_inputs,
93
  )
94
 
95
+ demo.queue().launch(debug=True, share=True)