reddmann007 commited on
Commit
3f0b250
·
verified ·
1 Parent(s): 846a791

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -80,7 +80,7 @@ if st.button("Generate Report"):
80
  with st.spinner("Analyzing match data..."):
81
  match_crew = Crew(
82
  agents=[scout, analyst, writer],
83
- tasks=[scrape_task, analyze_task, write_report_task]
84
  verbose=True, # This helps us see the agents working in real-time
85
  max_rpm=2 # Limits the crew to 2 requests every 60 seconds
86
  )
 
80
  with st.spinner("Analyzing match data..."):
81
  match_crew = Crew(
82
  agents=[scout, analyst, writer],
83
+ tasks=[scrape_task, analyze_task, write_report_task],
84
  verbose=True, # This helps us see the agents working in real-time
85
  max_rpm=2 # Limits the crew to 2 requests every 60 seconds
86
  )