Update app.py
Browse files
app.py
CHANGED
|
@@ -61,6 +61,8 @@ def search(outname,params,tablename):
|
|
| 61 |
|
| 62 |
# Gradioインターフェース
|
| 63 |
interface = gr.Interface(
|
|
|
|
|
|
|
| 64 |
fn=search,
|
| 65 |
inputs=[gr.Textbox(label="出力ファイル名",value="cm_output.html"), gr.Textbox(label="パラメーター",value="['caption','title','content','date']"), gr.Textbox(label="テーブル名",value="company_matters")],
|
| 66 |
outputs=gr.Textbox(label="結果"),
|
|
|
|
| 61 |
|
| 62 |
# Gradioインターフェース
|
| 63 |
interface = gr.Interface(
|
| 64 |
+
css="footer {visibility: hidden;}",
|
| 65 |
+
theme=gr.themes.Glass(),
|
| 66 |
fn=search,
|
| 67 |
inputs=[gr.Textbox(label="出力ファイル名",value="cm_output.html"), gr.Textbox(label="パラメーター",value="['caption','title','content','date']"), gr.Textbox(label="テーブル名",value="company_matters")],
|
| 68 |
outputs=gr.Textbox(label="結果"),
|