cogcorp commited on
Commit
6d06c94
·
1 Parent(s): c2ea49c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -186,7 +186,8 @@ with gr.Blocks() as demo:
186
  gr.Image("logo.jpg")
187
  answer = gr.Textbox(label='The answer to your question is :')
188
 
189
- btn.click(main_loop, inputs=[url, files, question], outputs=[answer])
 
190
 
191
 
192
 
 
186
  gr.Image("logo.jpg")
187
  answer = gr.Textbox(label='The answer to your question is :')
188
 
189
+ btn.click(main_loop, inputs=[url, files, question, openAI_key], outputs=[answer])
190
+
191
 
192
 
193