get_memory_by_agent
Retrieve all stored memory entries for a specific agent to access relevant context and information for AI interactions.
Instructions
Get all memory entries for a specific agent
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agentId | Yes | ID of the agent to get memory for |
Input Schema (JSON Schema)
{
"properties": {
"agentId": {
"description": "ID of the agent to get memory for",
"type": "string"
}
},
"required": [
"agentId"
],
"type": "object"
}