Update app.py
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ with gr.Blocks() as demo:
|
|
82 |
gr.Markdown("Search Narrators using this tool or Retrieve Transmissions involving Narrator")
|
83 |
with gr.Tab("Search Narrator"):
|
84 |
text_input = gr.Textbox()
|
85 |
-
text_output = gr.DataFrame(
|
86 |
text_button = gr.Button("Search")
|
87 |
text_button.click(narrator_retriever, inputs=text_input, outputs=text_output)
|
88 |
|
|
|
82 |
gr.Markdown("Search Narrators using this tool or Retrieve Transmissions involving Narrator")
|
83 |
with gr.Tab("Search Narrator"):
|
84 |
text_input = gr.Textbox()
|
85 |
+
text_output = gr.DataFrame()
|
86 |
text_button = gr.Button("Search")
|
87 |
text_button.click(narrator_retriever, inputs=text_input, outputs=text_output)
|
88 |
|