mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 15:29:36 +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>
36 lines
1.4 KiB
Python
36 lines
1.4 KiB
Python
"""Contract / legal outline templates — not legal advice; approval required."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
|
|
def list_contract_templates() -> dict[str, Any]:
|
|
templates = [
|
|
{
|
|
"id": "pilot_agreement",
|
|
"title_ar": "مسودة اتفاق Pilot",
|
|
"outline_ar": ["نطاق الخدمة", "مدة التجربة", "القياس (Proof)", "PDPL ومصادر البيانات", "إيقاف فوري"],
|
|
"legal_review_required": True,
|
|
"approval_required": True,
|
|
"not_legal_advice": True,
|
|
},
|
|
{
|
|
"id": "dpa_pilot",
|
|
"title_ar": "مسودة DPA تجريبية",
|
|
"outline_ar": ["أدوار المعالج/المتحكم", "الاحتفاظ", "حقوق الأفراد", "الأمان", "نقل البيانات"],
|
|
"legal_review_required": True,
|
|
"approval_required": True,
|
|
"not_legal_advice": True,
|
|
},
|
|
{
|
|
"id": "referral_partner",
|
|
"title_ar": "مسودة اتفاق إحالة/شريك",
|
|
"outline_ar": ["نسبة الإحالة", "تسوية الفواتير", "العلامة التجارية", "سرية"],
|
|
"legal_review_required": True,
|
|
"approval_required": True,
|
|
"not_legal_advice": True,
|
|
},
|
|
]
|
|
return {"templates": templates, "demo": True}
|