Docs: Add immutable param to ADD (#2246)

This commit is contained in:
Dev Khant
2025-02-22 23:37:30 +05:30
committed by GitHub
parent 5d47f4f060
commit 17887b5959
2 changed files with 55 additions and 24 deletions

View File

@@ -774,26 +774,20 @@
"type": "string",
"format": "date-time"
},
"total_memories": {
"type": "integer"
},
"owner": {
"type": "string"
},
"immutable": {
"type": "boolean",
"description": "Whether the memory is immutable.",
"title": "Immutable",
"default": false
},
"organization": {
"type": "string"
},
"metadata": {
"type": "object"
},
"type": {
"type": "string",
"enum": [
"user",
"agent",
"app",
"run"
]
}
},
"required": [
@@ -1170,26 +1164,20 @@
"type": "string",
"format": "date-time"
},
"total_memories": {
"type": "integer"
},
"owner": {
"type": "string"
},
"immutable": {
"type": "boolean",
"description": "Whether the memory is immutable.",
"title": "Immutable",
"default": false
},
"organization": {
"type": "string"
},
"metadata": {
"type": "object"
},
"type": {
"type": "string",
"enum": [
"user",
"agent",
"app",
"run"
]
}
},
"required": [
@@ -1320,6 +1308,12 @@
},
"description": "Categories associated with the memory"
},
"immutable": {
"type": "boolean",
"description": "Whether the memory is immutable.",
"title": "Immutable",
"default": false
},
"created_at": {
"type": "string",
"format": "date-time",
@@ -1441,6 +1435,12 @@
},
"description": "Categories associated with the memory"
},
"immutable": {
"type": "boolean",
"description": "Whether the memory is immutable.",
"title": "Immutable",
"default": false
},
"created_at": {
"type": "string",
"format": "date-time",
@@ -4782,6 +4782,12 @@
"type": "string",
"nullable": true
},
"immutable": {
"description": "Whether the memory is immutable.",
"title": "Immutable",
"type": "boolean",
"default": false
},
"org_id": {
"description": "The unique identifier of the organization associated with this memory.",
"title": "Organization id",