Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -533,10 +533,13 @@ with gr.Blocks() as app:
|
|
533 |
with gr.Tab("PDF Batch"):
|
534 |
pdf_batch = gr.Textbox(label="PDF URL Batch (comma separated)")
|
535 |
m_box=gr.HTML()
|
536 |
-
e_box=gr.Textbox()
|
537 |
|
|
|
|
|
538 |
json_out=gr.JSON()
|
539 |
#text=gr.JSON()
|
|
|
|
|
540 |
#inp_query.change(search_models,inp_query,models_dd)
|
541 |
clear_btn.click(clear_fn,None,[prompt,chatbot])
|
542 |
|
|
|
533 |
with gr.Tab("PDF Batch"):
|
534 |
pdf_batch = gr.Textbox(label="PDF URL Batch (comma separated)")
|
535 |
m_box=gr.HTML()
|
|
|
536 |
|
537 |
+
e_box=gr.Textbox(interactive=True)
|
538 |
+
upd_button=gr.Button("Update Chart")
|
539 |
json_out=gr.JSON()
|
540 |
#text=gr.JSON()
|
541 |
+
|
542 |
+
upd_button.click(mm,e_box,m_box)
|
543 |
#inp_query.change(search_models,inp_query,models_dd)
|
544 |
clear_btn.click(clear_fn,None,[prompt,chatbot])
|
545 |
|