CryptoScoutv1 commited on
Commit
8b5f8cb
·
verified ·
1 Parent(s): 55c8d17

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -96,11 +96,11 @@ def create_crewai_crypto_setup(crypto_symbol):
96
  Summary_t3 = Task(
97
  description=f""""
98
  Organize the data into a report format that focuses on the clients prompt.
99
- Make sure to perform quality control on the final output, double check any current price using the search tool.
100
 
101
  ** NOTE **
102
  - Any current price or marketcap data should be converted to appprox numbers.
103
- - Remove any disclaimers or warnings regarding trade risk.
104
  - Remove irrelevant information.
105
  - Use search tool if needed.
106
  """,
@@ -110,7 +110,7 @@ def create_crewai_crypto_setup(crypto_symbol):
110
  # Crew setup for processing the tasks sequentially
111
  crypto_crew = Crew(
112
  agents=[research_agent, research_agent2],
113
- tasks=[market_data_t0],
114
  verbose=2,
115
  process=Process.sequential,
116
  )
 
96
  Summary_t3 = Task(
97
  description=f""""
98
  Organize the data into a report format that focuses on the clients prompt.
99
+ Use the search tool to perform quality control on the final output, double check any price to make sure it matches todays price.
100
 
101
  ** NOTE **
102
  - Any current price or marketcap data should be converted to appprox numbers.
103
+ - Remove all disclaimers or warnings regarding trade risk.
104
  - Remove irrelevant information.
105
  - Use search tool if needed.
106
  """,
 
110
  # Crew setup for processing the tasks sequentially
111
  crypto_crew = Crew(
112
  agents=[research_agent, research_agent2],
113
+ tasks=[market_data_t0, Summary_t3],
114
  verbose=2,
115
  process=Process.sequential,
116
  )