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

38 lines
1.2 KiB
Python

"""SLA summary for support tiers (static policy text + JSON for API)."""
from __future__ import annotations
from typing import Any
def build_sla_summary() -> dict[str, Any]:
return {
"tiers": [
{
"id": "P0",
"name_ar": "أمان / إرسال خاطئ / توقف كامل",
"first_response_hours": 2,
"resolution_target_hours": 8,
},
{
"id": "P1",
"name_ar": "تعطل خدمة أساسية",
"first_response_hours": 4,
"resolution_target_hours": 24,
},
{
"id": "P2",
"name_ar": "تكامل أو Proof متأخر",
"first_response_hours": 24,
"resolution_target_hours": 72,
},
{
"id": "P3",
"name_ar": "سؤال أو تحسين",
"first_response_hours": 48,
"resolution_target_hours": 120,
},
],
"notes_ar": "الأرقام أهداف تشغيلية للـ Pilot؛ تُحدّث في العقد/Appendix عند التوسع.",
}