Sazabi
APIMemory

Search project memory

POST
/memory/search

Hybrid semantic and keyword search over project memory documents.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/memory/search" \  -H "Content-Type: application/json" \  -d '{    "query": "string"  }'
{  "hits": [    {      "documentId": "4704590c-004e-410d-adf7-acb7ca0a7052",      "kind": "note",      "managed": true,      "path": "string",      "title": "string",      "snippet": "string",      "score": 0    }  ],  "emptyVerdict": {    "calibrated": true,    "minScoreThreshold": 0,    "queryTerms": [      "string"    ],    "message": "string"  }}