Tlolela kwa Diteng
AGIRight.org

Dikwalo / Dikao

Dikao tsa Dipholisi

Dikao di supa tsa dipholisi tse di balwang ke metšhini tse di ka kopiwang ka bonako — go tswa tsibogong e potlana ya AICR go ya go karabo ya HTTP 402 ya mofuta wa pay-per-crawl. Dirisa playground go dira ya gago.

v0.2MIT

01 · AICR

Pholisi ya AICR e e tlwaelesegileng

Tsibogo ya ditshwanelo tse di potlana: e bulegetse go balwa le go kgutlhufadiwa fa go supilwe motswedi, mme sengwe le sengwe se se tseneletseng se bewa thoko.

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

Katalogo ya AICL e e tlwaelesegileng

Maemo a mabedi a dilaesense: maemo a mahala a setšhaba le maemo a kgwebo a a ikaegileng ka go ikgolaganya.

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

Karabo ya HTTP 402 ya mofuta wa pay-per-crawl

Se seabi (server) se ka se busang fa crawler ya AI e kopa diteng tse di nang le laesense kwa ntle ga tokene ya laesense — tekanyo ya theko e e ka diragadiwang ke metšhini go na le tsela e e sa gorogeng gope.

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

Laesense ya Patlisiso Fela

Ke mahala bakeng sa tiriso ya patlisiso ka melero ya go boloka; tiriso nngwe le nngwe ya kgwebo e tlhoka go ikgolaganngwa. E thusa mafelo a thuto le disete tsa data.

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

Pholisi ya Diteng tse di Sa Dumeleseng Thupelo

Bulegile ka botlalo mo maemong a a sa yang kwa teng — go bala, go kgutlhufatsa, go tsopola, RAG — fa go beelwa thupelo ya modele le fine-tuning thoko ka tsela e e tlhomameng.

/.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 e dumeletswe ka go supa motswedi (porofaele ya AILP)

Porofaele ya tetlelelo ya go ithuta e e amogelang go tsaya-gape (retrieval) le embedding, mme e batla go supiwa ga motswedi (attribution) le go gana go gopolwa ka mokgwa o o tlhamaletseng (verbatim memorization).

/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

Tiriso ya kgwebo e tlhoka go ikgolaganngwa

Diphetogo tse di tlhomameng ka tsela: blog e bulegile, karolo ya patlisiso ya boleng jo bo kwa godimo e tlhoka laesense bakeng sa sengwe le sengwe se se fetang go bala.

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

A o batla go dira faele ya gago ya pholisi? Bula Playground →