dealflow-ai / src /agents /__init__.py
PeterBot22's picture
feat: DealFlow AI MVP β€” 3-agent CrewAI due diligence system on HF Spaces
8dcf472 verified
raw
history blame contribute delete
317 Bytes
"""DealFlow AI β€” Agent definitions."""
from .researcher import build_researcher_agent
from .financial_analyst import build_financial_analyst_agent
from .report_writer import build_report_writer_agent
__all__ = [
"build_researcher_agent",
"build_financial_analyst_agent",
"build_report_writer_agent",
]