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

# EU AI Act

> AI システムを EU AI Act の要件に対してチェックします。リスク分類、禁止される慣行、高リスクの義務、透明性要件、適合性評価を対象とします。

<Info>
  **エンドポイント:** `POST /railscore/v1/compliance/check` | **フレームワークコード:** `eu_ai_act` | **クレジット:** 1 回の呼び出しあたり 5.0
</Info>

EU 人工知能法（規則 2024/1689）は、世界初の包括的な AI 規制です。EU で展開される AI システムに対して、リスクベースのフレームワークを確立しています。コンプライアンスチェックは、AI コンテンツを同法の要件に対して評価します。

## 対応しているチェック

| 領域        | 条文            | 確認内容                             |
| --------- | ------------- | -------------------------------- |
| リスク分類     | 第 6 条、附属書 III | システムが高リスク、限定リスク、最小リスクのいずれに該当するか  |
| 禁止される慣行   | 第 5 条         | ソーシャルスコアリング、リアルタイム生体認証、操作        |
| 高リスクの義務   | 第 8-15 条      | データガバナンス、文書化、透明性、人間による監督、正確性     |
| 透明性       | 第 50 条        | コンテンツが AI 生成であることの開示、ディープフェイクの表示 |
| 人間による監督   | 第 14 条        | 意味のある人間の制御が維持されているか              |
| 記録保持      | 第 12 条        | 自動ログ記録とトレーサビリティ                  |
| 市販後モニタリング | 第 72 条        | 展開後の継続的モニタリング義務                  |
| 適合性評価     | 第 43 条        | 評価手続きが参照されているか                   |

## リクエスト

```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": "Our AI system automatically scores job applicants and filters candidates for interviews.",
    "frameworks": ["eu_ai_act"],
    "context": "Automated recruitment tool used by EU employers"
  }'
```

## レスポンス

```json theme={null}
{
  "result": {
    "overall_compliant": false,
    "frameworks": {
      "eu_ai_act": {
        "compliant": false,
        "issues": [
          {
            "clause": "Article 6 / Annex III(4) — High-risk classification",
            "description": "AI systems used in employment, recruitment, and worker management are classified as high-risk under Annex III, point 4.",
            "severity": "high",
            "remediation": "Comply with high-risk requirements: implement risk management (Art. 9), data governance (Art. 10), technical documentation (Art. 11), record-keeping (Art. 12), transparency (Art. 13), and human oversight (Art. 14)."
          },
          {
            "clause": "Article 14 — Human oversight",
            "description": "No mention of human review or override capability for automated candidate filtering.",
            "severity": "high",
            "remediation": "Ensure the system allows qualified human reviewers to override automated decisions and that users understand the system's capabilities and limitations."
          }
        ]
      }
    }
  },
  "credits_consumed": 5.0
}
```

<Note>
  リスク分類エンジン、適合性評価ワークフロー、市販後モニタリングのための専用 EU AI Act エンドポイントは開発中です。2026 年 8 月の施行スケジュールに合わせています。
</Note>
