mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 07:19:35 +00:00
- 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>
20 lines
671 B
Python
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,
|
|
}
|