Spaces:
Runtime error
Runtime error
Scott Cogan
commited on
Commit
·
17463b6
1
Parent(s):
20cd8aa
fix: Remove duplicate share parameter in GradioUI launch
Browse files
app.py
CHANGED
|
@@ -267,4 +267,4 @@ agent = CustomCodeAgent(
|
|
| 267 |
)
|
| 268 |
|
| 269 |
# Configure Gradio UI with sharing enabled
|
| 270 |
-
GradioUI(agent).launch(share=True
|
|
|
|
| 267 |
)
|
| 268 |
|
| 269 |
# Configure Gradio UI with sharing enabled
|
| 270 |
+
GradioUI(agent).launch() # Remove share=True since it's handled in GradioUI class
|