Dokumentation / Exempel
Policyexempel
Sju kopiera-och-klistra-in-färdiga maskinläsbara policyexempel — från en minimal AICR-deklaration till ett HTTP 402-svar i pay-per-crawl-stil. Använd lekplatsen för att generera dina egna.
01 · AICR
Grundläggande AICR-policy
En minimal rättighetsdeklaration: öppen för läsning och sammanfattning med källhänvisning, allt djupare förbehållet.
{
"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
Grundläggande AICL-katalog
Två licensnivåer: en kostnadsfri offentlig nivå och en kontaktbaserad kommersiell nivå.
{
"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-svar i pay-per-crawl-stil
Vad en server kan returnera när en AI-sökrobot begär licensierat innehåll utan ett licenstoken — en maskinellt hanterbar offert istället för en återvändsgränd.
{
"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
Licens endast för forskning
Kostnadsfritt för forskningsbruk med lagringsgränser; all kommersiell användning kräver kontakt. Användbart för akademiska webbplatser och dataset.
{
"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
Innehållspolicy utan träningsanvändning
Maximalt öppen på grunda nivåer — läsning, sammanfattning, citering, RAG — samtidigt som modellträning och finjustering kategoriskt förbehålls.
{
"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 tillåten med källhänvisning (AILP-profil)
En inlärningstillståndsprofil som välkomnar hämtning och embedding men kräver källhänvisning och nekar ordagrann memorering.
{
"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
Kommersiell användning kräver kontakt
Sökvägsspecifika undantag: bloggen är öppen, premiumforskningsavsnittet kräver en licens för allt utöver läsning.
{
"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
}
}
}
]
} Vill du generera din egen policyfil? Öppna lekplatsen →