chg: [information-origin] create a new taxonomy define if the content is
from an AI-based system, a human or the origin is unknown. The original taxonomy from @aaronkaplan has been fixed to match the correct MISP taxonomy schema format. The file in the original pull-request was most probably `information-origin:AI-generated`. This taxonomy is just namespace predicate as there is no need of specific values until now.pull/265/head
parent
a391724d5c
commit
c02fc66988
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue