system-prompts-and-models-o.../dealix/auto_client_acquisition/meeting_intelligence/followup_builder.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

16 lines
739 B
Python

"""Post-meeting follow-up draft (Arabic)."""
from __future__ import annotations
from typing import Any
def build_post_meeting_followup(summary_ar: str, next_steps: list[str] | None = None) -> dict[str, Any]:
steps = next_steps or ["إرسال ملخص موافق عليه", "تحديد موعد متابعة", "مشاركة مسودة عرض مختصرة"]
body = (
f"شكراً لوقتكم. الملخص: {summary_ar[:200]}\n"
f"الخطوات المقترحة: {'؛ '.join(steps)}.\n"
"ننتظر تأكيدكم للمتابعة."
)
return {"subject_ar": "متابعة — ملخص الاجتماع والخطوة التالية", "body_ar": body, "approval_required": True, "demo": True}