wanifuck Claude commited on
Commit
6dc4b6b
·
1 Parent(s): 8769d6a

fix: Gradioアプリでエラー詳細表示を有効化

Browse files

- show_error=True でエラー詳細表示を有効化
- デバッグ用のエラー情報を取得可能に

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -273,5 +273,6 @@ if __name__ == "__main__":
273
  server_name="0.0.0.0",
274
  server_port=7860,
275
  share=True,
276
- show_api=True
 
277
  )
 
273
  server_name="0.0.0.0",
274
  server_port=7860,
275
  share=True,
276
+ show_api=True,
277
+ show_error=True # エラー詳細表示を有効化
278
  )