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>
19 lines
660 B
Python
19 lines
660 B
Python
"""Safe competitive move suggestions (display-only)."""
|
||
|
||
from __future__ import annotations
|
||
|
||
from typing import Any
|
||
|
||
|
||
def build_competitive_moves(sector: str | None = None) -> dict[str, Any]:
|
||
sec = sector or "عام"
|
||
return {
|
||
"sector": sec,
|
||
"moves_ar": [
|
||
"تضييق رسالة القيمة على نتيجة واحدة قابلة للقياس لكل عميل.",
|
||
"عرض تجربة ٧ أيام مع حدود واضحة للنطاق وتقرير إثبات أسبوعي.",
|
||
"تفعيل غرفة صفقة مشتركة مع SLA داخلي ٢٤ ساعة للرد.",
|
||
],
|
||
"demo": True,
|
||
}
|