Skip to content

Commit

Permalink
update AION schema with GLC prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
ndthang15 committed Jun 25, 2024
1 parent 85d3d84 commit 42237e5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
"media": {
"description": "Links to external files generated during processing",
"$ref": "../master.json#/definitions/medias"
},
"embedding": {
"description": "The embedding engine result was generated",
"$ref": "../master.json#/definitions/embedding"
}
}
}
Expand Down
20 changes: 13 additions & 7 deletions packages/veritone-json-schemas/schemas/vtn-standard/master.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
},
"validationContracts": {
"$ref": "#/definitions/validationContracts"
},
"internalTaskId": {
"description": "ID of the internal task. A part of the GLC prototype",
"$ref": "#/definitions/guid"
}
}
},
Expand Down Expand Up @@ -368,6 +372,9 @@
"referenceId": {
"description": "Unique identifier of the vector",
"type": "string"
},
"fingerprintVector": {
"$ref": "#/definitions/fingerprintVector"
}
},
"required": ["type"],
Expand Down Expand Up @@ -776,6 +783,10 @@
"description": "Custom data that doesn't conform to any other field. You can add any arbitrary data inside this object, but it will not be indexed, searchable, or have any impact on the system. However it will be returned when reading the data back out.",
"type": "object"
},
"fingerprintVector": {
"description": "An array of vectors related to the vectorized data",
"type": "array"
},
"embedding": {
"description": "The embedding engine result was generated",
"type": "array",
Expand All @@ -787,17 +798,12 @@
"type": "string"
},
"vector": {
"description": "An array of vectors related to the vectorized data",
"type": "array",
"items": {
"type": "number"
}
"$ref": "#/definitions/fingerprintVector"
},
"tags": {
"$ref": "#/definitions/tags"
}
},
"required": ["referenceId"]
}
}
}
}
Expand Down

0 comments on commit 42237e5

Please sign in to comment.