Aktraiser commited on
Commit
d3422bb
·
verified ·
1 Parent(s): 1145f54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -5
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=None,
241
- description=None,
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
+ )