mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09: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>
17 lines
543 B
Python
17 lines
543 B
Python
"""Channel health snapshot (deterministic demo)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
|
|
def demo_channel_health() -> dict[str, Any]:
|
|
return {
|
|
"channels": [
|
|
{"channel": "email", "health_score": 78, "notes_ar": "مسودات فقط — جيد"},
|
|
{"channel": "whatsapp", "health_score": 62, "notes_ar": "يحتاج opt-in واضح"},
|
|
{"channel": "linkedin", "health_score": 70, "notes_ar": "Lead Forms أولاً — لا auto-DM"},
|
|
],
|
|
"demo": True,
|
|
}
|