add_observations
Add observations to entities in a knowledge graph, enabling users to expand and organize AI memories stored as Markdown files for visualization in Obsidian's graph view.
Instructions
Add new observations to existing entities in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
observations | Yes |
Input Schema (JSON Schema)
{
"properties": {
"observations": {
"items": {
"properties": {
"contents": {
"description": "An array of observation contents to add",
"items": {
"type": "string"
},
"type": "array"
},
"entityName": {
"description": "The name of the entity to add the observations to",
"type": "string"
}
},
"required": [
"entityName",
"contents"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"observations"
],
"type": "object"
}