mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 23:39:34 +00:00
- Add integrations CRM and AI routing APIs; Salesforce OAuth refresh; lead CRM metadata - Marketer hub, settings CRM UI, OS views; premium landing and strategy_summary differentiators - Docs: API-MAP, product guide, competitive matrix, launch simulation, AGENT-MAP LLM routing - Sync script: strategy legal + competitive matrix to public; pytest DB isolation (.pytest_dealix.sqlite) - Tests: CRM status and AI routing smoke; check_go_live_gate UTF-8 stdout on Windows - Alembic migrations for strategic deal links and lead company/sector/city Made-with: Cursor
15 lines
537 B
Python
15 lines
537 B
Python
from app.services.dealix_os.vertical_playbooks import VERTICAL_PLAYBOOKS, get_playbook, list_playbook_ids
|
|
from app.services.dealix_os.partner_archetypes import ARCHETYPE_MAP, list_archetypes, archetype_for_deal_type
|
|
from app.services.dealix_os.policy_engine import evaluate_action, suggested_playbook_for_industry
|
|
|
|
__all__ = [
|
|
"VERTICAL_PLAYBOOKS",
|
|
"get_playbook",
|
|
"list_playbook_ids",
|
|
"ARCHETYPE_MAP",
|
|
"list_archetypes",
|
|
"archetype_for_deal_type",
|
|
"evaluate_action",
|
|
"suggested_playbook_for_industry",
|
|
]
|