Spaces:
Sleeping
Sleeping
Commit
·
83b14f5
1
Parent(s):
2862eea
Update app.py
Browse files
app.py
CHANGED
@@ -485,7 +485,6 @@ def crewai_process(portfolio_stocks):
|
|
485 |
llm = gemini_llm,
|
486 |
tools=[
|
487 |
GeminiSearchTools.gemini_search,
|
488 |
-
YahooFinanceNewsTool(),
|
489 |
SECTools.search_10q,
|
490 |
SECTools.search_10k
|
491 |
|
@@ -504,7 +503,6 @@ def crewai_process(portfolio_stocks):
|
|
504 |
llm = gemini_llm,
|
505 |
tools=[
|
506 |
GeminiSearchTools.gemini_search,
|
507 |
-
YahooFinanceNewsTool(),
|
508 |
SECTools.search_10q,
|
509 |
SECTools.search_10k
|
510 |
]
|
@@ -530,7 +528,8 @@ def crewai_process(portfolio_stocks):
|
|
530 |
description=f'''Alex will perform an in-depth analysis of a specific market sector that is currently
|
531 |
underrepresented in the portfolio {portfolio_stocks}. This involves evaluating the growth potential,
|
532 |
competitive landscape, and financial health of leading companies within that sector. The goal is to
|
533 |
-
identify potential investment opportunities that could offer higher returns and enhance the portfolios diversity
|
|
|
534 |
agent=equityanalyst
|
535 |
)
|
536 |
|
|
|
485 |
llm = gemini_llm,
|
486 |
tools=[
|
487 |
GeminiSearchTools.gemini_search,
|
|
|
488 |
SECTools.search_10q,
|
489 |
SECTools.search_10k
|
490 |
|
|
|
503 |
llm = gemini_llm,
|
504 |
tools=[
|
505 |
GeminiSearchTools.gemini_search,
|
|
|
506 |
SECTools.search_10q,
|
507 |
SECTools.search_10k
|
508 |
]
|
|
|
528 |
description=f'''Alex will perform an in-depth analysis of a specific market sector that is currently
|
529 |
underrepresented in the portfolio {portfolio_stocks}. This involves evaluating the growth potential,
|
530 |
competitive landscape, and financial health of leading companies within that sector. The goal is to
|
531 |
+
identify potential investment opportunities that could offer higher returns and enhance the portfolios diversity.
|
532 |
+
Use Gemini to search the web. ''',
|
533 |
agent=equityanalyst
|
534 |
)
|
535 |
|