Spaces:
Runtime error
Runtime error
Upload main_app.py
Browse files- main_app.py +2 -2
main_app.py
CHANGED
|
@@ -1437,7 +1437,7 @@ def render_chat_tab_content(managers):
|
|
| 1437 |
type="password",
|
| 1438 |
help="https://huggingface.co/settings/tokens からトークンを取得してください"
|
| 1439 |
)
|
| 1440 |
-
col1, col2
|
| 1441 |
with col1:
|
| 1442 |
auth_button = st.form_submit_button("🔑 認証", type="primary")
|
| 1443 |
with col2:
|
|
@@ -3522,7 +3522,7 @@ def main():
|
|
| 3522 |
tutorial_manager.render_tutorial_tab()
|
| 3523 |
|
| 3524 |
# ポチのコンポーネントはチャットタブ内に移動
|
| 3525 |
-
|
| 3526 |
def check_stored_auth():
|
| 3527 |
"""ページ読み込み時に保存された認証情報をチェック"""
|
| 3528 |
return components.html("""
|
|
|
|
| 1437 |
type="password",
|
| 1438 |
help="https://huggingface.co/settings/tokens からトークンを取得してください"
|
| 1439 |
)
|
| 1440 |
+
col1, col2 = st.columns([3,2])
|
| 1441 |
with col1:
|
| 1442 |
auth_button = st.form_submit_button("🔑 認証", type="primary")
|
| 1443 |
with col2:
|
|
|
|
| 3522 |
tutorial_manager.render_tutorial_tab()
|
| 3523 |
|
| 3524 |
# ポチのコンポーネントはチャットタブ内に移動
|
| 3525 |
+
# 自動復元処理のためのJavaScript
|
| 3526 |
def check_stored_auth():
|
| 3527 |
"""ページ読み込み時に保存された認証情報をチェック"""
|
| 3528 |
return components.html("""
|