system-prompts-and-models-o.../dealix/auto_client_acquisition/launch_ops/demo_flow.py
Sami Assiri b13cb389cc feat(dealix): sync full Dealix package to repo
- API routers, ACA modules, integrations (draft operators)
- Docs, landing pages, scripts (launch readiness, scorecard)
- Tests and CI workflow updates for Dealix

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-01 21:01:17 +03:00

53 lines
2.1 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""12-minute demo script structure for founders."""
from __future__ import annotations
from typing import Any
def build_demo_script() -> dict[str, Any]:
return {
"duration_minutes": 12,
"sections": [
{
"minute_range": "0-2",
"title_ar": "المشكلة والوعد",
"talking_points_ar": [
"Dealix ليس CRM ولا بوت واتساب فقط.",
"نحوّل الإشارات إلى قرار يومي عربي + موافقة + Proof.",
],
},
{
"minute_range": "2-4",
"title_ar": "Daily Brief",
"api_hint": "GET /api/v1/personal-operator/daily-brief",
"talking_points_ar": ["٣ قرارات", "مخاطر", "جاهزية"],
},
{
"minute_range": "4-6",
"title_ar": "Growth Operator / ١٠ فرص",
"api_hint": "GET /api/v1/growth-operator/missions",
"talking_points_ar": ["لماذا الآن", "Accept/Skip", "لا cold WhatsApp"],
},
{
"minute_range": "6-8",
"title_ar": "Inbox ومنصة",
"api_hint": "GET /api/v1/platform/inbox/feed",
"talking_points_ar": ["كروت عربية", "موافقة قبل الإرسال"],
},
{
"minute_range": "8-10",
"title_ar": "برج الخدمات",
"api_hint": "GET /api/v1/services/catalog",
"talking_points_ar": ["تشخيص", "قوائم", "Growth OS", "أسعار تقديرية"],
},
{
"minute_range": "10-12",
"title_ar": "Pilot وProof",
"talking_points_ar": ["٧ أيام أو ٣٠ يوم", "Proof Pack", "الخطوة التالية"],
},
],
"closing_line_ar": "لا نعد نتائج مضمونة — نعد مسودات وموافقات وتقارير قياس.",
"demo": True,
}