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
548 B
Python
17 lines
548 B
Python
"""Proof ledger lines for Company OS (demo, in-process)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
|
|
def demo_proof_ledger() -> dict[str, Any]:
|
|
return {
|
|
"entries": [
|
|
{"metric": "drafts_created", "delta": 3, "notes_ar": "بعد موافقة تجريبية"},
|
|
{"metric": "risks_blocked", "delta": 1, "notes_ar": "منع إرسال جماعي مقترح"},
|
|
{"metric": "approvals_logged", "delta": 2, "notes_ar": "سجل قرار داخلي"},
|
|
],
|
|
"demo": True,
|
|
}
|