Update Gradio interface launch to enable multi-client support
Browse files- Modified the `iface.launch()` method to include the `mcp_server=True` parameter, allowing for multi-client connections in the Gradio interface.
app.py
CHANGED
|
@@ -163,4 +163,4 @@ iface = gr.Interface(
|
|
| 163 |
description="タブ区切りデータを貼り付け、Supabase データベースのテーブルにインポートします。テーブルが存在しない場合は新しく作成します。"
|
| 164 |
)
|
| 165 |
|
| 166 |
-
iface.launch()
|
|
|
|
| 163 |
description="タブ区切りデータを貼り付け、Supabase データベースのテーブルにインポートします。テーブルが存在しない場合は新しく作成します。"
|
| 164 |
)
|
| 165 |
|
| 166 |
+
iface.launch(mcp_server=True)
|