दस्तावेज़ / उदाहरण
नीति उदाहरण
सात कॉपी-पेस्ट-तैयार मशीन-पठनीय नीति उदाहरण — एक न्यूनतम AICR घोषणा से लेकर पे-पर-क्रॉल शैली की HTTP 402 प्रतिक्रिया तक। अपना खुद का बनाने के लिए प्लेग्राउंड का उपयोग करें।
01 · AICR
बुनियादी AICR नीति
एक न्यूनतम अधिकार घोषणा: एट्रिब्यूशन के साथ पढ़ने और सारांशीकरण के लिए खुली, इससे आगे की हर चीज़ आरक्षित।
{
"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 सूची
दो लाइसेंस स्तर: एक निःशुल्क सार्वजनिक स्तर और एक संपर्क-आधारित व्यावसायिक स्तर।
{
"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 क्रॉलर लाइसेंस टोकन के बिना लाइसेंस-प्राप्त सामग्री का अनुरोध करता है तो एक सर्वर क्या लौटा सकता है — एक मृत-अंत के बजाय एक मशीन-क्रियान्वयन-योग्य कोट।
{
"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
केवल-शोध लाइसेंस
प्रतिधारण सीमाओं के साथ शोध उपयोग के लिए निःशुल्क; किसी भी व्यावसायिक उपयोग के लिए संपर्क आवश्यक। शैक्षणिक साइटों और डेटासेट के लिए उपयोगी।
{
"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 — जबकि मॉडल प्रशिक्षण और फाइन-ट्यूनिंग को स्पष्ट रूप से आरक्षित रखते हुए।
{
"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 प्रोफ़ाइल)
एक शिक्षण-अनुमति प्रोफ़ाइल जो पुनर्प्राप्ति और एम्बेडिंग का स्वागत करती है लेकिन एट्रिब्यूशन अनिवार्य करती है और शब्दशः स्मरण से इनकार करती है।
{
"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
व्यावसायिक उपयोग के लिए संपर्क आवश्यक
पथ-विशिष्ट ओवरराइड: ब्लॉग खुला है, प्रीमियम शोध खंड में पढ़ने से आगे किसी भी चीज़ के लिए लाइसेंस आवश्यक है।
{
"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
}
}
}
]
} अपनी खुद की नीति फ़ाइल बनाना चाहते हैं? प्लेग्राउंड खोलें →