taishi-i commited on
Commit
41ccd9e
1 Parent(s): 2d9e475

update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -45,7 +45,9 @@ with gr.Blocks() as demo:
45
  query = gr.Textbox(
46
  label="Search English or Japanese words", placeholder="llm"
47
  )
48
- df = gr.DataFrame(type="pandas", datatype="markdown", height=1000)
 
 
49
 
50
  query.change(fn=show_search_results, inputs=query, outputs=df)
51
 
 
45
  query = gr.Textbox(
46
  label="Search English or Japanese words", placeholder="llm"
47
  )
48
+ df = gr.DataFrame(
49
+ value=data, type="pandas", datatype="markdown", height=1000
50
+ )
51
 
52
  query.change(fn=show_search_results, inputs=query, outputs=df)
53