Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -249,11 +249,6 @@ agent = CodeAgent(
|
|
| 249 |
prompt_templates=prompt_templates
|
| 250 |
)
|
| 251 |
|
| 252 |
-
#
|
| 253 |
gradio_ui = GradioUI(agent)
|
| 254 |
-
gradio_ui.launch(
|
| 255 |
-
server_name="0.0.0.0",
|
| 256 |
-
server_port=7860,
|
| 257 |
-
share=True,
|
| 258 |
-
debug=True
|
| 259 |
-
)
|
|
|
|
| 249 |
prompt_templates=prompt_templates
|
| 250 |
)
|
| 251 |
|
| 252 |
+
# Use the existing Gradio UI configuration
|
| 253 |
gradio_ui = GradioUI(agent)
|
| 254 |
+
gradio_ui.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|