Chuyển đến nội dung
AGIRight.org

Tài liệu / Ví dụ

Ví dụ Chính sách

Bảy ví dụ chính sách máy có thể đọc được, sẵn sàng để sao chép và dán — từ một khai báo AICR tối giản đến một phản hồi HTTP 402 kiểu pay-per-crawl. Hãy dùng khu vực thử nghiệm để tạo phiên bản của riêng bạn.

v0.2MIT

01 · AICR

Chính sách AICR cơ bản

Một khai báo quyền tối giản: mở cho việc đọc và tóm tắt kèm ghi nguồn, mọi thứ sâu hơn đều được bảo lưu.

/.well-known/aicr.json
{
  "version": "0.1",
  "protocol": "AICR",
  "publisher": "example.org",
  "default_policy": {
    "read_access": { "allowed": true },
    "summarization": {
      "allowed": true,
      "attribution_required": true
    },
    "training": { "allowed": false },
    "commercial_use": { "allowed": false },
    "redistribution": { "allowed": false }
  }
}

02 · AICL

Danh mục AICL cơ bản

Hai bậc giấy phép: một bậc công khai miễn phí và một bậc thương mại xử lý qua liên hệ.

/.well-known/aicl.json
{
  "version": "0.1",
  "protocol": "AICL",
  "publisher": "example.org",
  "licenses": [
    {
      "id": "public_read",
      "rights": ["read", "summarize"],
      "price": { "amount": "0", "currency": "USD" },
      "conditions": ["attribution_required"]
    },
    {
      "id": "commercial",
      "rights": ["training", "commercial_use"],
      "requires_contact": true,
      "contact": "licensing@example.org"
    }
  ]
}

03 · AICL

Phản hồi HTTP 402 kiểu pay-per-crawl

Những gì một máy chủ có thể trả về khi một trình thu thập dữ liệu AI yêu cầu nội dung có giấy phép mà không có token giấy phép — một báo giá mà máy có thể hành động, thay vì một ngõ cụt.

HTTP/1.1 402 Payment Required
{
  "error": "license_required",
  "message": "This resource requires a license for AI use.",
  "aicl": "https://example.org/.well-known/aicl.json",
  "applicable_licenses": [
    {
      "id": "metered_rag",
      "rights": ["rag"],
      "price": {
        "amount": "0.002",
        "currency": "USD",
        "unit": "per_request"
      }
    }
  ],
  "quote_endpoint": "https://example.org/api/aicl/quote",
  "contact": "licensing@example.org"
}

04 · AICL

Giấy phép chỉ dành cho nghiên cứu

Miễn phí cho mục đích nghiên cứu với giới hạn lưu giữ; mọi sử dụng thương mại đều cần liên hệ trước. Hữu ích cho các trang học thuật và bộ dữ liệu.

/.well-known/aicl.json
{
  "version": "0.1",
  "protocol": "AICL",
  "publisher": "research-lab.example",
  "licenses": [
    {
      "id": "academic_research",
      "rights": ["read", "summarize", "rag", "transform"],
      "price": { "amount": "0", "currency": "USD" },
      "conditions": [
        "attribution_required",
        "research_use_only",
        "retention_days_90",
        "no_commercial_use"
      ]
    },
    {
      "id": "commercial",
      "rights": ["training", "commercial_use"],
      "requires_contact": true,
      "contact": "data-office@research-lab.example"
    }
  ]
}

05 · AICR

Chính sách nội dung không dùng để huấn luyện

Mở tối đa ở các cấp độ nông — đọc, tóm tắt, trích dẫn, RAG — trong khi bảo lưu hoàn toàn việc huấn luyện và tinh chỉnh mô hình.

/.well-known/aicr.json
{
  "version": "0.1",
  "protocol": "AICR",
  "publisher": "creator.example",
  "default_policy": {
    "read_access": { "allowed": true },
    "summarization": {
      "allowed": true,
      "attribution_required": true
    },
    "quotation": {
      "allowed": true,
      "max_excerpt_words": 150,
      "attribution_required": true
    },
    "rag_use": {
      "allowed": true,
      "attribution_required": true
    },
    "training": { "allowed": false },
    "commercial_use": {
      "allowed": false,
      "license_required": true,
      "permission_contact": "hello@creator.example"
    }
  }
}

06 · AILP

Cho phép RAG kèm ghi nguồn (hồ sơ AILP)

Một hồ sơ quyền học tập chào đón việc truy xuất và embedding, nhưng yêu cầu ghi nguồn và từ chối việc ghi nhớ nguyên văn.

/ai/rights-spectrum.json
{
  "version": "0.1",
  "protocol": "AILP",
  "publisher": "blog.example",
  "default": {
    "access": "allowed",
    "indexing": "allowed",
    "inference_input": "allowed",
    "embedding": "allowed",
    "training": "license_required",
    "fine_tuning": "license_required",
    "distillation": "denied",
    "verbatim_memory": "denied",
    "attribution": "required",
    "compensation": "contact"
  },
  "contact": "author@blog.example"
}

07 · AICR

Sử dụng thương mại cần liên hệ trước

Ghi đè theo từng đường dẫn cụ thể: blog thì mở, còn mục nghiên cứu cao cấp cần giấy phép cho mọi thứ ngoài việc đọc.

/.well-known/aicr.json
{
  "version": "0.1",
  "protocol": "AICR",
  "publisher": "publisher.example",
  "default_policy": {
    "read_access": { "allowed": true },
    "summarization": {
      "allowed": true,
      "attribution_required": true
    },
    "training": {
      "allowed": false,
      "license_required": true,
      "permission_contact": "sales@publisher.example"
    }
  },
  "resource_overrides": [
    {
      "path": "/premium/*",
      "policy": {
        "summarization": { "allowed": false },
        "rag_use": {
          "allowed": false,
          "license_required": true
        }
      }
    }
  ]
}

Muốn tạo tệp chính sách của riêng bạn? Mở khu vực thử nghiệm →