MTeguri commited on
Commit
dbceedc
·
1 Parent(s): 12a3cd5

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.

Files changed (1) hide show
  1. app.py +1 -1
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)