fudii0921 commited on
Commit
f2585ef
·
verified ·
1 Parent(s): 8593f1c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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="検索クエリ"), value="生成的人工知能モデルについて教えてください。"],
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
  )