search_within_memory
Locate specific information within a memory document by providing a memory ID and search query to retrieve relevant data efficiently.
Instructions
Search for information within a memory document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memory_id | Yes | The ID of the memory document to search | |
query | Yes | The search query (words or phrases) |
Input Schema (JSON Schema)
{
"properties": {
"memory_id": {
"description": "The ID of the memory document to search",
"type": "string"
},
"query": {
"description": "The search query (words or phrases)",
"type": "string"
}
},
"required": [
"memory_id",
"query"
],
"type": "object"
}