دستاویزات / مثالیں
پالیسی کی مثالیں
سات کاپی-پیسٹ کے لیے تیار مشین کے قابلِ فہم پالیسی کی مثالیں — ایک کم از کم AICR بیان سے لے کر pay-per-crawl طرز کے 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
Pay-per-crawl طرز کا HTTP 402 جواب
جب کوئی اے آئی کرالر بغیر لائسنس ٹوکن کے لائسنس یافتہ مواد کی درخواست کرتا ہے تو سرور کیا واپس کر سکتا ہے — ایک بند گلی کے بجائے ایک مشین کے ذریعے قابلِ عمل قیمت۔
{
"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
}
}
}
]
} اپنی خود کی پالیسی فائل تیار کرنا چاہتے ہیں؟ پلے گراؤنڈ کھولیں →