Lista di cryptovalute (#36)

* CryptoSymbolsTool per recuperare TUTTI i simboli delle criptovalute da Yahoo Finance
* CryptoSymbolsTools integrazione nel sistema di strumenti.
* Removed currency from config
* fix format symbol in all markets
This commit was merged in pull request #36.
This commit is contained in:
Giacomo Bertolazzi
2025-10-21 15:58:42 +02:00
committed by GitHub
parent 12339ccbff
commit 2e092d3f25
13 changed files with 9740 additions and 14 deletions

View File

@@ -96,7 +96,7 @@ class PipelineInputs:
return Team(
model=self.team_leader_model.get_model(TEAM_LEADER_INSTRUCTIONS),
name="CryptoAnalysisTeam",
tools=[ReasoningTools(), PlanMemoryTool()],
tools=[ReasoningTools(), PlanMemoryTool(), CryptoSymbolsTools()],
members=[market_agent, news_agent, social_agent],
)
@@ -112,7 +112,7 @@ class PipelineInputs:
"""
api = self.configs.api
market_tool = MarketAPIsTool(currency=api.currency)
market_tool = MarketAPIsTool()
market_tool.handler.set_retries(api.retry_attempts, api.retry_delay_seconds)
news_tool = NewsAPIsTool()
news_tool.handler.set_retries(api.retry_attempts, api.retry_delay_seconds)