Update app.py
Browse files
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 |
-
|
100 |
|
101 |
** NOTE **
|
102 |
- Any current price or marketcap data should be converted to appprox numbers.
|
103 |
-
- Remove
|
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 |
)
|