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>
23 lines
842 B
Python
23 lines
842 B
Python
"""Static competitor gap framing — do_not_copy list."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
|
|
def compare_against_categories(service_id: str) -> dict[str, Any]:
|
|
return {
|
|
"service_id": service_id,
|
|
"competitor_strengths_ar": [
|
|
"أدوات CRM: بيانات غنية لكن بدون قرار يومي.",
|
|
"أدوات واتساب: إرسال سريع لكن بدون سياسة.",
|
|
],
|
|
"dealix_advantages_ar": [
|
|
"كروت قرار عربية + موافقة + Proof.",
|
|
"تعدد قنوات مع بوابة أمان.",
|
|
],
|
|
"gaps_to_close_ar": ["تكاملات OAuth حقيقية", "تتبع تكلفة LLM"],
|
|
"do_not_copy": ["spam_automation", "scraping_linkedin", "cold_whatsapp_blast"],
|
|
"demo": True,
|
|
}
|