CoolFace
Apppublic

crazyafro/financial_intelligence_agent

sourceHugging Facemitupdated 4mo agoView on Hugging Face
0likes
__init__.py13 linesDownload Raw Back to tools
1from .search_tools import get_tavily_tool, wikipedia_search2from .finance_tools import get_stock_price, get_crypto_price, get_exchange_rate3from .analysis_tools import calculator, get_date_context, summarize_text4from .report_tools import save_report_to_file, format_markdown_report5from .rag_tools import index_document, search_knowledge_base6 7RESEARCH_TOOLS = [get_tavily_tool(), wikipedia_search]8FINANCE_TOOLS = [get_stock_price, get_crypto_price, get_exchange_rate]9ANALYSIS_TOOLS = [calculator, get_date_context, summarize_text]10REPORT_TOOLS = [format_markdown_report, save_report_to_file]11RAG_TOOLS = [index_document, search_knowledge_base]12ALL_TOOLS = RESEARCH_TOOLS + FINANCE_TOOLS + ANALYSIS_TOOLS + REPORT_TOOLS + RAG_TOOLS13