Update app.py
Browse files
app.py
CHANGED
|
@@ -136,8 +136,10 @@ def search(query):
|
|
| 136 |
|
| 137 |
# Gradioインターフェース
|
| 138 |
interface = gr.Interface(
|
|
|
|
|
|
|
| 139 |
fn=search,
|
| 140 |
-
inputs=[gr.Textbox(label="検索クエリ"
|
| 141 |
outputs=gr.Textbox(label="検索結果"),
|
| 142 |
title="Vectorstore検索デモ"
|
| 143 |
)
|
|
|
|
| 136 |
|
| 137 |
# Gradioインターフェース
|
| 138 |
interface = gr.Interface(
|
| 139 |
+
css="footer {visibility: hidden;}",
|
| 140 |
+
theme=gr.themes.Glass(),
|
| 141 |
fn=search,
|
| 142 |
+
inputs=[gr.Textbox(label="検索クエリ", value="生成的人工知能モデルについて教えてください。")],
|
| 143 |
outputs=gr.Textbox(label="検索結果"),
|
| 144 |
title="Vectorstore検索デモ"
|
| 145 |
)
|