search_memories
Find relevant memories stored in the vector database by searching with a specific query to retrieve past information across conversations.
Instructions
Search the vector store for memories that match the query.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}