Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -216,14 +216,6 @@ with gr.Blocks(css="footer {visibility: hidden;} .custom-btn {width: 150px; heig
|
|
| 216 |
m2 = gr.Markdown()
|
| 217 |
ku.load(greeting, inputs=None, outputs=m1)
|
| 218 |
|
| 219 |
-
with gr.Column():
|
| 220 |
-
gr.HTML('<div id="header"><span>🛡️ Knowledge Utility</span><img id="logo" src="https://www.ryhintl.com/images/ryhlogo/ryhlogo.png" width="64" height="64" alt="Logo"></div>')
|
| 221 |
-
gr.Markdown("# ナレッジ・エージェント")
|
| 222 |
-
gr.Markdown("📧 ベクターDBに保存されている知識ベースのインベントリを使用して知識共有します。")
|
| 223 |
-
user_btn = gr.Button("ユーザー情報", elem_classes=["custom-btn"])
|
| 224 |
-
|
| 225 |
-
user_btn.click(fn=user_info, inputs=[state], outputs=None)
|
| 226 |
-
|
| 227 |
with gr.Sidebar(open=False):
|
| 228 |
gr.HTML("""
|
| 229 |
<!DOCTYPE html>
|
|
@@ -300,6 +292,14 @@ with gr.Blocks(css="footer {visibility: hidden;} .custom-btn {width: 150px; heig
|
|
| 300 |
</html>
|
| 301 |
""")
|
| 302 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 303 |
with gr.Tab("KU 検索") as tab_find:
|
| 304 |
with gr.Row():
|
| 305 |
query_input = gr.Textbox(
|
|
|
|
| 216 |
m2 = gr.Markdown()
|
| 217 |
ku.load(greeting, inputs=None, outputs=m1)
|
| 218 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 219 |
with gr.Sidebar(open=False):
|
| 220 |
gr.HTML("""
|
| 221 |
<!DOCTYPE html>
|
|
|
|
| 292 |
</html>
|
| 293 |
""")
|
| 294 |
|
| 295 |
+
with gr.Column():
|
| 296 |
+
gr.HTML('<div id="header"><span>🛡️ Knowledge Utility</span><img id="logo" src="https://www.ryhintl.com/images/ryhlogo/ryhlogo.png" width="64" height="64" alt="Logo"></div>')
|
| 297 |
+
gr.Markdown("# ナレッジ・エージェント")
|
| 298 |
+
gr.Markdown("📧 ベクターDBに保存されている知識ベースのインベントリを使用して知識共有します。")
|
| 299 |
+
user_btn = gr.Button("ユーザー情報", elem_classes=["custom-btn"])
|
| 300 |
+
|
| 301 |
+
user_btn.click(fn=user_info, inputs=[state], outputs=None)
|
| 302 |
+
|
| 303 |
with gr.Tab("KU 検索") as tab_find:
|
| 304 |
with gr.Row():
|
| 305 |
query_input = gr.Textbox(
|