create_relations
Define and establish connections between entities using structured data formats, enabling efficient relationship management in high-performance memory systems.
Instructions
Create relations between entities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
relations | Yes |
Input Schema (JSON Schema)
{
"properties": {
"relations": {
"items": {
"properties": {
"source": {
"type": "string"
},
"target": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"source",
"target",
"type"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"relations"
],
"type": "object"
}