Spaces:
Running
Running
df_summarise = gr.Textbox(container=True, show_copy_button=True, label="資料本文", lines=40)
Browse files
app.py
CHANGED
@@ -136,10 +136,10 @@ with gr.Blocks() as demo:
|
|
136 |
|
137 |
with gr.Column():
|
138 |
with gr.Tab("資料本文"):
|
139 |
-
df_string_output = gr.Textbox(
|
140 |
with gr.Tab("資料摘要"):
|
141 |
gr.Markdown("## 這是一張什麼表?")
|
142 |
-
df_summarise = gr.Textbox()
|
143 |
with gr.Tab("常用問題"):
|
144 |
gr.Markdown("## 常用問題")
|
145 |
btn_1 = gr.Button()
|
|
|
136 |
|
137 |
with gr.Column():
|
138 |
with gr.Tab("資料本文"):
|
139 |
+
df_string_output = gr.Textbox()
|
140 |
with gr.Tab("資料摘要"):
|
141 |
gr.Markdown("## 這是一張什麼表?")
|
142 |
+
df_summarise = gr.Textbox(container=True, show_copy_button=True, label="資料本文", lines=40)
|
143 |
with gr.Tab("常用問題"):
|
144 |
gr.Markdown("## 常用問題")
|
145 |
btn_1 = gr.Button()
|