FinanceTools is a single finance toolkit with swappable data providers, so an agent pulls prices, fundamentals, and market data through one consistent interface while you choose the source underneath.
from agno.agent import Agent
from agno.tools.finance import FinanceTools
agent = Agent(tools=[FinanceTools()])
agent.print_response("Give me a market brief on NVIDIA")Previously financial data meant reaching for a provider-specific toolkit and rewiring your agent if you switched vendors. Now the provider is a configuration detail rather than a rewrite.
See the docs for reference.



