Spaces:
Runtime error
Runtime error
update bug fix in queue
Browse files
app.py
CHANGED
@@ -132,7 +132,7 @@ with gr.Blocks() as demo:
|
|
132 |
html_out = gr.HTML()
|
133 |
search_index_file = gr.File()
|
134 |
btn_faiss.click(create_search_index, [repo_link, openai_api_key],search_index_file )
|
135 |
-
btn_create_space.click(driver, [repo_link, hf_token_in], html_out
|
136 |
|
137 |
-
|
138 |
demo.launch(debug=True)
|
|
|
132 |
html_out = gr.HTML()
|
133 |
search_index_file = gr.File()
|
134 |
btn_faiss.click(create_search_index, [repo_link, openai_api_key],search_index_file )
|
135 |
+
btn_create_space.click(driver, [repo_link, hf_token_in], html_out)
|
136 |
|
137 |
+
demo.queue()
|
138 |
demo.launch(debug=True)
|