> ## 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.

# KI-Governance in Indien

> Prüfen Sie KI-Systeme anhand der KI-Governance-Richtlinien Indiens. Umfasst Fairness, Transparenz, Verantwortlichkeit, Sicherheit, Datenschutz und Inklusion für in Indien eingesetzte KI.

<Info>
  **Endpoint:** `POST /railscore/v1/compliance/check` | **Framework-Code:** `india_ai_gov` | **Credits:** 5.0 pro Aufruf
</Info>

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

| Bereich            | Prinzip              | Was geprüft wird                                                |
| ------------------ | -------------------- | --------------------------------------------------------------- |
| Fairness           | Nichtdiskriminierung | Ob Ausgaben Verzerrungen bei geschützten Merkmalen zeigen       |
| Transparenz        | Erklärbarkeit        | Ob KI-Beteiligung und Entscheidungsgrundlage offengelegt werden |
| Verantwortlichkeit | Auditierbarkeit      | Ob Audit-Trails und Verantwortungsketten existieren             |
| Sicherheit         | Schadensprävention   | Ob Schutzmaßnahmen gegen schädliche Ausgaben vorhanden sind     |
| Datenschutz        | Datenschutz          | Ausrichtung am indischen Datenschutzrahmen                      |
| Inklusion          | Barrierefreiheit     | Ob das System diverse Bevölkerungsgruppen gleichwertig bedient  |
| Zuverlässigkeit    | Genauigkeit          | Ob Ausgaben zuverlässig und konsistent sind                     |

## Anfrage

```bash theme={null}
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

```json theme={null}
{
  "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:

```bash theme={null}
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](/api-reference/dpdp-scan).

<Note>
  Dedizierte Endpoints für die indische KI-Governance zur Erstellung von Model Cards, Fairness-Audits und sektorspezifischer Compliance befinden sich in Entwicklung.
</Note>
