| name | memory-recall |
| description | Search and recall memories from ourmem. Use when user asks to find, recall, search, or remember something. |
Memory Recall
Search ourmem for relevant memories using semantic search.
How to search
curl -sf \
-H "X-API-Key: $OMEM_API_KEY" \
-H "Accept: application/json" \
"${OMEM_API_URL:-https://api.ourmem.ai}/v1/memories/search?q=$ARGUMENTS&limit=10"
Replace $ARGUMENTS with the URL-encoded search query.
Response Format
The API returns:
{
"results": [
{
"memory": {
"id": "...",
"content": "...",
"tags": ["..."],
"created_at": "..."
},
"score": 0.95
}
]
}