dealflow-ai / src /tasks /__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
294 Bytes
"""DealFlow AI β€” Task definitions."""
from .research_tasks import build_research_task
from .analysis_tasks import build_financial_analysis_task
from .report_tasks import build_report_task
__all__ = [
"build_research_task",
"build_financial_analysis_task",
"build_report_task",
]