დოკუმენტაცია / მაგალითები
პოლიტიკის მაგალითები
შვიდი კოპირება-ჩასმისთვის მზა მანქანურად წაკითხვადი პოლიტიკის მაგალითი — მინიმალური AICR დეკლარაციიდან pay-per-crawl სტილის HTTP 402 პასუხამდე. გამოიყენეთ სავარჯიშო სივრცე საკუთარის შესაქმნელად.
01 · AICR
ძირითადი AICR პოლიტიკა
მინიმალური უფლებების დეკლარაცია: ღია კითხვისა და შეჯამებისთვის attribution-ით, ყველაფერი უფრო ღრმა დაცულია.
{
"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 პასუხი
რისი დაბრუნება შეუძლია სერვერს, როცა AI crawler ითხოვს ლიცენზირებულ კონტენტს ლიცენზიის ტოკენის გარეშე — მანქანურად სამოქმედო შეთავაზება ჩიხის ნაცვლად.
{
"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 — კატეგორიულად იცავს რა მოდელის წვრთნასა და fine-tuning-ს.
{
"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 პროფილი)
სწავლის ნებართვის პროფილი, რომელიც მისასალმებელია მოძიებისა და embedding-ისთვის, მაგრამ მოითხოვს attribution-ს და კრძალავს სიტყვასიტყვით დამახსოვრებას.
{
"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
}
}
}
]
} გსურთ საკუთარი პოლიტიკის ფაილის შექმნა? გახსენით სავარჯიშო სივრცე →