-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlicenses.html
More file actions
77 lines (65 loc) · 3.88 KB
/
licenses.html
File metadata and controls
77 lines (65 loc) · 3.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
layout: default
title: AIUL Licenses
---
<div class="page-content">
<h2>AIUL License Tags</h2>
<p>The AI Usage License (AIUL) framework includes six primary license tags, each representing a different level of permitted AI usage. These tags can be combined with optional media-specific suffixes to provide additional clarity for different types of assignments.</p>
<h3>Primary License Tags</h3>
<table>
<thead>
<tr>
<th scope="col">Tag</th>
<th scope="col">Description</th>
<th scope="col">Example Use Case</th>
</tr>
</thead>
<tbody>
{% for license_key in site.data.aiul.licenses.items %}
{% assign license = license_key[1] %}
<tr>
<td><strong><a href="{{ license.versions[license.latest].url }}">{{ license.title }}</a></strong> ({{ license.full_name }})</td>
<td>{{ license.description }}</td>
<td>{{ license.example }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<h3>Choosing Media-Specific Suffixes</h3>
<p>Media-specific suffixes help clarify which types of AI tools are relevant to the assignment:</p>
<table>
<thead>
<tr>
<th scope="col">Suffix</th>
<th scope="col">Description</th>
<th scope="col">Example Use Cases</th>
</tr>
</thead>
<tbody>
{% for modifier_key in site.data.aiul.modifiers.items %}
{% assign modifier = modifier_key[1] %}
<tr>
<td><strong><a href="{{ modifier.versions[modifier.latest].url }}">-{{ modifier.code }}</a></strong> ({{ modifier.full_name }})</td>
<td>{{ modifier.description }}</td>
<td>{{ modifier.example }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<p>If an assignment involves multiple media types but focuses primarily on one, you can use the primary media suffix. For more complex assignments, the <strong><a href="{{ 'modifiers/mixed-media/1.0.0/' | relative_url }}">-MX</a></strong> suffix is appropriate.</p>
<h3>Examples of Combined Tags</h3>
<ul>
{% assign na_modifier = site.modifiers | where: "title", "WR" | first %}
{% assign cd_modifier = site.modifiers | where: "title", "IM" | first %}
{% assign tc_modifier = site.modifiers | where: "title", "AU" | first %}
{% assign dp_modifier = site.modifiers | where: "title", "VD" | first %}
{% assign iu_modifier = site.modifiers | where: "title", "MX" | first %}
<li><strong><a href="{{ '/combinations/na-wr.html?license=1.0.0&modifier=1.0.0' | relative_url }}">AIUL-NA-WR</a></strong>: A writing assignment where no AI text generation is permitted.</li>
<li><strong><a href="{{ '/combinations/cd-im.html?license=1.0.0&modifier=1.0.0' | relative_url }}">AIUL-CD-IM</a></strong>: An image creation assignment where AI can be used for inspiration or research but the final image must be created without AI generation.</li>
<li><strong><a href="{{ '/combinations/tc-au.html?license=1.0.0&modifier=1.0.0' | relative_url }}">AIUL-TC-AU</a></strong>: An audio production assignment where AI tools can be used collaboratively, but with significant student input and direction.</li>
<li><strong><a href="{{ '/combinations/dp-vd.html?license=1.0.0&modifier=1.0.0' | relative_url }}">AIUL-DP-VD</a></strong>: A video project where AI-assisted creation is permitted with student direction and editing.</li>
<li><strong><a href="{{ '/combinations/iu-mx.html?license=1.0.0&modifier=1.0.0' | relative_url }}">AIUL-IU-MX</a></strong>: A mixed-media project that requires the integration of AI tools as a core learning objective.</li>
</ul>
<h3>Implementation Resources</h3>
<p>For detailed implementation guidelines and syllabus language, please visit our <a href="{{ '/resources.html' | relative_url }}">Resources</a> page. To determine the appropriate tag for your assignment, try our <a href="{{ '/tag-generator.html' | relative_url }}">Tag Generator</a>.</p>
</div>