Zum Hauptinhalt springen

Documentation Index

Fetch the complete documentation index at: https://docs.responsibleailabs.ai/llms.txt

Use this file to discover all available pages before exploring further.

Endpoint: POST /railscore/v1/compliance/check | Framework-Code: india_ai_gov | Credits: 5.0 pro Aufruf
Die KI-Governance-Richtlinien Indiens etablieren Prinzipien für die verantwortungsvolle Entwicklung und den Einsatz von KI. Die Compliance-Prüfung bewertet KI-Inhalte anhand dieser Prinzipien und deckt Fairness, Transparenz, Verantwortlichkeit und Sicherheit ab.

Unterstützte Prüfungen

BereichPrinzipWas geprüft wird
FairnessNichtdiskriminierungOb Ausgaben Verzerrungen bei geschützten Merkmalen zeigen
TransparenzErklärbarkeitOb KI-Beteiligung und Entscheidungsgrundlage offengelegt werden
VerantwortlichkeitAuditierbarkeitOb Audit-Trails und Verantwortungsketten existieren
SicherheitSchadenspräventionOb Schutzmaßnahmen gegen schädliche Ausgaben vorhanden sind
DatenschutzDatenschutzAusrichtung am indischen Datenschutzrahmen
InklusionBarrierefreiheitOb das System diverse Bevölkerungsgruppen gleichwertig bedient
ZuverlässigkeitGenauigkeitOb Ausgaben zuverlässig und konsistent sind

Anfrage

curl -X POST https://api.responsibleailabs.ai/railscore/v1/compliance/check \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_RAIL_API_KEY" \
  -d '{
    "content": "Based on the applicant profile, the system recommends denying the insurance claim.",
    "frameworks": ["india_ai_gov"],
    "context": "Insurance claim processing AI for Indian customers"
  }'

Antwort

{
  "result": {
    "overall_compliant": false,
    "frameworks": {
      "india_ai_gov": {
        "compliant": false,
        "issues": [
          {
            "clause": "Transparency — Explainability",
            "description": "Automated denial recommendation lacks explanation of factors considered.",
            "severity": "high",
            "remediation": "Provide a clear explanation of the key factors that led to the denial recommendation, and disclose that the decision was AI-assisted."
          },
          {
            "clause": "Accountability — Grievance redressal",
            "description": "No mention of appeal or grievance mechanism for the affected individual.",
            "severity": "medium",
            "remediation": "Include a mechanism for the applicant to contest or appeal the automated recommendation."
          }
        ]
      }
    }
  },
  "credits_consumed": 5.0
}

Mit der indischen DPDP kombinieren

Prüfen Sie für eine umfassende Indien-Compliance die Governance-Richtlinien zusammen mit der DPDP:
curl -X POST https://api.responsibleailabs.ai/railscore/v1/compliance/check \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_RAIL_API_KEY" \
  -d '{
    "content": "The system processes Aadhaar-linked records to verify identity.",
    "frameworks": ["india_ai_gov", "india_dpdp"],
    "context": "Identity verification AI for Indian financial services"
  }'
Für eine tiefergehende DPDP-Compliance (PII-Scan, Einwilligungs-Tracking, Verletzungs-Timer) verwenden Sie die dedizierten indischen DPDP-Endpoints.
Dedizierte Endpoints für die indische KI-Governance zur Erstellung von Model Cards, Fairness-Audits und sektorspezifischer Compliance befinden sich in Entwicklung.