Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -237,12 +237,16 @@ agent = CodeAgent(
|
|
237 |
verbosity_level=2, # Increased verbosity to show more details
|
238 |
grammar=None,
|
239 |
planning_interval=None,
|
240 |
-
name=
|
241 |
-
description=
|
242 |
-
prompt_templates=prompt_templates
|
243 |
-
include_execution_details=True
|
244 |
)
|
245 |
|
246 |
# Configure Gradio UI to display full match details
|
247 |
gradio_ui = GradioUI(agent)
|
248 |
-
gradio_ui.launch(
|
|
|
|
|
|
|
|
|
|
|
|
237 |
verbosity_level=2, # Increased verbosity to show more details
|
238 |
grammar=None,
|
239 |
planning_interval=None,
|
240 |
+
name="NBA Match Assistant",
|
241 |
+
description="An assistant that provides detailed NBA match information and predictions",
|
242 |
+
prompt_templates=prompt_templates
|
|
|
243 |
)
|
244 |
|
245 |
# Configure Gradio UI to display full match details
|
246 |
gradio_ui = GradioUI(agent)
|
247 |
+
gradio_ui.launch(
|
248 |
+
server_name="0.0.0.0",
|
249 |
+
server_port=7860,
|
250 |
+
share=True,
|
251 |
+
debug=True
|
252 |
+
)
|