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

19 lines
660 B
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.

"""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,
}