સામગ્રી પર જાઓ
AGIRight.org

દસ્તાવેજીકરણ / ઉદાહરણો

નીતિ ઉદાહરણો

કૉપિ-પેસ્ટ માટે તૈયાર સાત મશીન-વાંચનીય નીતિ ઉદાહરણો — એક ન્યૂનતમ AICR ઘોષણાથી લઈને pay-per-crawl શૈલીના HTTP 402 પ્રતિભાવ સુધી. તમારી પોતાની જનરેટ કરવા માટે Playground નો ઉપયોગ કરો.

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

pay-per-crawl શૈલીનો 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
        }
      }
    }
  ]
}

તમારી પોતાની નીતિ ફાઇલ જનરેટ કરવી છે? Playground ખોલો →