Import ClientFlow production v4928.1.5.132.4

This commit is contained in:
plx
2026-07-29 13:11:01 +00:00
parent 6445044ac6
commit 261d342057
405 changed files with 48373 additions and 1401 deletions

View File

@@ -0,0 +1,16 @@
"""Company-configurable opportunity workflow engine."""
from .evidence import OpportunityEvidence, build_opportunity_evidence
from .decision import OpportunityDecision, WorkflowAction
from .engine import decide_opportunity_next_action
from .profiles import CompanyWorkflowProfile, load_company_profile
__all__ = [
"OpportunityEvidence",
"OpportunityDecision",
"WorkflowAction",
"build_opportunity_evidence",
"decide_opportunity_next_action",
"CompanyWorkflowProfile",
"load_company_profile",
]