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

20 lines
671 B
Python

"""Executive board brief — Arabic headline + bullets."""
from __future__ import annotations
from typing import Any
def build_board_brief(snapshot: dict[str, Any] | None) -> dict[str, Any]:
sn = snapshot or {}
title = str(sn.get("title_ar") or "موجز أسبوعي — Dealix")
return {
"title_ar": title,
"bullets_ar": [
"زخم الصفقات: مستقر مع حاجة لمتابعة ما بعد الاجتماع.",
"الامتثال: لا إرسال جماعي حتى اكتمال opt-in.",
"الفرص: ركّز على قطاعين بدل تشتيت ICP.",
],
"demo": True,
}