FDSRashid commited on
Commit
6575a44
·
verified ·
1 Parent(s): 19c8b32

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -29,7 +29,7 @@ def book_retriever(name):
29
 
30
  with gr.Blocks() as demo:
31
  text_input = gr.Textbox()
32
- text_output = gr.DataFrame(wrap=True, elem_classes="qa-pairs")
33
  text_button = gr.Button("Search")
34
  text_button.click(book_retriever, inputs=text_input, outputs=text_output)
35
 
 
29
 
30
  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(book_retriever, inputs=text_input, outputs=text_output)
35