17 lines
524 B
Python
17 lines
524 B
Python
"""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",
|
|
]
|