Spaces:
Sleeping
Sleeping
Update to-do.md
Browse files
to-do.md
CHANGED
@@ -11,4 +11,24 @@
|
|
11 |
|
12 |
|
13 |
final report should consist of:
|
14 |
-
overview, [yearly salary trends, location + remote work impact, company size consideration] + visual insights, conclusion)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
|
13 |
final report should consist of:
|
14 |
+
overview, [yearly salary trends, location + remote work impact, company size consideration] + visual insights, conclusion)
|
15 |
+
|
16 |
+
|
17 |
+
|
18 |
+
------
|
19 |
+
|
20 |
+
# Agent for generating the main report (without Conclusion)
|
21 |
+
report_writer = Agent(
|
22 |
+
role="Technical Report Writer",
|
23 |
+
goal="Summarize the analysis into a structured report with Introduction, Key Insights, and Analysis. DO NOT include any conclusion or summary.",
|
24 |
+
backstory="Markdown report excluding Conclusion and Summary.",
|
25 |
+
llm=llm,
|
26 |
+
)
|
27 |
+
|
28 |
+
# agent for generating ONLY the Conclusion
|
29 |
+
conclusion_writer = Agent(
|
30 |
+
role="Conclusion Specialist",
|
31 |
+
goal="Summarize findings into a clear and concise Conclusion/Summary section.",
|
32 |
+
backstory="An expert in crafting well-structured and insightful conclusions.",
|
33 |
+
llm=llm,
|
34 |
+
)
|