Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -31,6 +31,6 @@ with gr.Blocks() as demo:
|
|
31 |
text_input = gr.Textbox()
|
32 |
text_output = gr.DataFrame(wrap=True)
|
33 |
text_button = gr.Button("Search")
|
34 |
-
text_button.click(
|
35 |
|
36 |
demo.launch()
|
|
|
31 |
text_input = gr.Textbox()
|
32 |
text_output = gr.DataFrame(wrap=True)
|
33 |
text_button = gr.Button("Search")
|
34 |
+
text_button.click(book_retriever, inputs=text_input, outputs=text_output)
|
35 |
|
36 |
demo.launch()
|