cURL
curl --request POST \ --url https://app.recallio.ai/api/GraphMemory/add \ --header 'Authorization: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "data": "<string>", "user_id": "<string>", "project_id": "<string>" } '
{ "deleted_entities": [ { "id": "<string>", "name": "<string>", "entity_type": "<string>", "user_id": "<string>", "project_id": "<string>", "embedding": [ 123 ], "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ], "added_entities": [ { "id": "<string>", "name": "<string>", "entity_type": "<string>", "user_id": "<string>", "project_id": "<string>", "embedding": [ 123 ], "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ], "relationships": [ { "id": "<string>", "source": "<string>", "destination": "<string>", "relationship_type": "<string>", "user_id": "<string>", "project_id": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ] }
Add data to the knowledge graph with automatic entity and relationship extraction.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
Graph add request with data and metadata
Created
Show child attributes