YanCotta commited on
Commit
9695090
·
1 Parent(s): 36bdf9d

feat: Enable async execution for research and analysis tasks to support parallel processing

Browse files
Files changed (1) hide show
  1. src/config/tasks.yaml +2 -0
src/config/tasks.yaml CHANGED
@@ -3,6 +3,7 @@
3
 
4
  # Task for the Researcher Agent
5
  research_task:
 
6
  description: >
7
  Conduct comprehensive qualitative research on {ticker} ({company_name}).
8
 
@@ -37,6 +38,7 @@ research_task:
37
 
38
  # Task for the Analyst Agent
39
  analysis_task:
 
40
  description: >
41
  Perform quantitative financial analysis for {ticker} ({company_name}).
42
 
 
3
 
4
  # Task for the Researcher Agent
5
  research_task:
6
+ async_execution: true # Run in parallel with analysis_task
7
  description: >
8
  Conduct comprehensive qualitative research on {ticker} ({company_name}).
9
 
 
38
 
39
  # Task for the Analyst Agent
40
  analysis_task:
41
+ async_execution: true # Run in parallel with research_task
42
  description: >
43
  Perform quantitative financial analysis for {ticker} ({company_name}).
44