feat(fusion_accounting_ai): 5 new asset management AI tools

Made-with: Cursor
This commit is contained in:
gsinghpal
2026-04-19 17:16:22 -04:00
parent 79cd0216ff
commit 9092a78be2
5 changed files with 137 additions and 1 deletions

View File

@@ -10,11 +10,13 @@ from .adp import TOOLS as ADP_TOOLS
from .reporting import TOOLS as REPORTING_TOOLS
from .audit import TOOLS as AUDIT_TOOLS
from .financial_reports import TOOLS as FINANCIAL_REPORTS_TOOLS
from .asset_management import TOOLS as ASSET_MANAGEMENT_TOOLS
TOOL_DISPATCH = {}
for tools_dict in [
BANK_RECON_TOOLS, HST_TOOLS, AR_TOOLS, AP_TOOLS, JOURNAL_TOOLS,
MONTH_END_TOOLS, PAYROLL_TOOLS, INVENTORY_TOOLS, ADP_TOOLS,
REPORTING_TOOLS, AUDIT_TOOLS, FINANCIAL_REPORTS_TOOLS,
ASSET_MANAGEMENT_TOOLS,
]:
TOOL_DISPATCH.update(tools_dict)