reichaves commited on
Commit
8a7c934
·
verified ·
1 Parent(s): aaef04d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -156,4 +156,5 @@ print("✓ Agent configured successfully")
156
  # LAUNCH THE GRADIO UI
157
  print("Launching Gradio UI...")
158
  # Start the Gradio interface with our configured agent and file upload directory
159
- GradioUI(agent, file_upload_folder="uploads").launch(debug=True)
 
 
156
  # LAUNCH THE GRADIO UI
157
  print("Launching Gradio UI...")
158
  # Start the Gradio interface with our configured agent and file upload directory
159
+ # Remove the debug parameter as it's already set in the GradioUI.launch method
160
+ GradioUI(agent, file_upload_folder="uploads").launch()