ข้ามไปยังเนื้อหา
AGIRight.org

เอกสาร / ตัวอย่าง

ตัวอย่างนโยบาย

ตัวอย่างนโยบายที่เครื่องอ่านได้พร้อมคัดลอกวางเจ็ดรายการ — ตั้งแต่การประกาศ AICR แบบขั้นต่ำ ไปจนถึงการตอบกลับ HTTP 402 สไตล์จ่ายต่อการครอว์ล ใช้เพลย์กราวด์เพื่อสร้างของคุณเอง

v0.2MIT

01 · AICR

นโยบาย AICR แบบพื้นฐาน

การประกาศสิทธิ์ขั้นต่ำ: เปิดให้อ่านและสรุปได้โดยต้องอ้างอิงแหล่งที่มา ส่วนที่ลึกกว่านั้นสงวนสิทธิ์ทั้งหมด

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

แคตตาล็อก AICL แบบพื้นฐาน

ระดับใบอนุญาตสองระดับ: ระดับสาธารณะแบบฟรี และระดับเชิงพาณิชย์ที่ใช้การติดต่อโดยตรง

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

การตอบกลับ HTTP 402 สไตล์จ่ายต่อการครอว์ล

สิ่งที่เซิร์ฟเวอร์สามารถส่งคืนได้ เมื่อครอว์เลอร์ AI ร้องขอเนื้อหาที่มีใบอนุญาตโดยไม่มีโทเคนใบอนุญาต — ใบเสนอราคาที่เครื่องดำเนินการได้ แทนที่จะเป็นทางตัน

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

ใบอนุญาตสำหรับการวิจัยเท่านั้น

ใช้งานฟรีสำหรับการวิจัยโดยมีขีดจำกัดการเก็บรักษาข้อมูล การใช้งานเชิงพาณิชย์ใด ๆ ต้องติดต่อสอบถาม เหมาะสำหรับเว็บไซต์และชุดข้อมูลเชิงวิชาการ

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

นโยบายเนื้อหาที่ไม่อนุญาตให้ฝึกโมเดล

เปิดกว้างอย่างเต็มที่ในระดับตื้น — อ่าน สรุป อ้างคำพูด RAG — ในขณะที่สงวนสิทธิ์การฝึกโมเดลและการปรับจูนไว้อย่างเด็ดขาด

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

อนุญาตให้ใช้ RAG ได้โดยต้องอ้างอิงแหล่งที่มา (โปรไฟล์ AILP)

โปรไฟล์การอนุญาตให้เรียนรู้ที่เปิดรับการดึงข้อมูลและการฝังเวกเตอร์ แต่กำหนดให้ต้องอ้างอิงแหล่งที่มา และปฏิเสธการจดจำแบบคำต่อคำ

/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

การใช้งานเชิงพาณิชย์ต้องติดต่อสอบถาม

การกำหนดค่าเฉพาะพาธ: บล็อกเปิดให้เข้าถึงได้อิสระ ส่วนหมวดงานวิจัยพรีเมียมต้องมีใบอนุญาตสำหรับการใช้งานใด ๆ ที่เกินกว่าการอ่าน

/.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
        }
      }
    }
  ]
}

ต้องการสร้างไฟล์นโยบายของคุณเองหรือไม่ เปิดเพลย์กราวด์ →