update app.py
Browse files
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(
|
|
|
|
|
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 |
|