diff --git a/ai-or-not/machinetag.json b/ai-or-not/machinetag.json deleted file mode 100644 index 4ec1eb6..0000000 --- a/ai-or-not/machinetag.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "namespace": "info-origin", - "description": "Taxonomy for tagging information by its origin: human-generated or AI-generated.", - "version": 1, - "predicates": [ - "human-generated", - "AI-generated", - "uncertain-origin" - ], - "expanded": { - "human-generated": { - "expanded": "Information that has been generated by a human", - "colour": "#33cc33" - }, - "AI-generated": { - "expanded": "Information that has been generated by an AI", - "colour": "#ff0000" - }, - "uncertain-origin": { - "expanded": "Information for which the origin is uncertain", - "colour": "#999999" - } - }, - "entry": [ - { - "value": "info-origin:human-generated", - "expanded": "Information that has been generated by a human" - }, - { - "value": "info-origin:AI-generated", - "expanded": "Information that has been generated by an AI" - }, - { - "value": "info-origin:uncertain-origin", - "expanded": "Information for which the origin is uncertain" - } - ] -} - diff --git a/information-origin/machinetag.json b/information-origin/machinetag.json new file mode 100644 index 0000000..711b4e7 --- /dev/null +++ b/information-origin/machinetag.json @@ -0,0 +1,25 @@ +{ + "namespace": "information-origin", + "description": "Taxonomy for tagging information by its origin: human-generated or AI-generated.", + "version": 2, + "predicates": [ + { + "value": "human-generated", + "description": "Information that has been generated by a human.", + "expanded": "human generated", + "colour": "#33FF00" + }, + { + "value": "AI-generated", + "description": "Information that has been generated by an AI LLM or similar technologies.", + "expanded": "AI generated", + "colour": "#FFC000" + }, + { + "value": "uncertain-origin", + "description": "Information for which the origin is uncertain which can be machine or a human.", + "expanded": "uncertain origin", + "colour": "#FFC000" + } + ] +}