按语义相似性搜索向量存储文档

Initiate a search operation with a query text and receive most semantically similar responses from the vector store.

Path parameters
vector-store-idstringrequired

The ID of the vector store.

Query parameters
qstringrequired

The search query text.

nintegeroptional

Number of chunks to return.

tnumberoptional

Matching threshold.

prev_chunksintegeroptional

Number of chunks before the matched chunk to include.

next_chunksintegeroptional

Number of chunks after the matched chunk to include.

Header parameters
x-api-keystringrequired

The API key for authentication.

Responses
curl -L \
  --url 'https://api.rememberizer.ai/api/v1/vector-stores/{vector-store-id}/documents/search?q=text' \
  --header 'x-api-key: text'
{
  "vector_store": {
    "id": "text",
    "name": "text"
  },
  "matched_chunks": [
    {
      "document": {
        "id": 1,
        "name": "text",
        "type": "text",
        "size": 1,
        "indexed_on": "2025-04-04T13:12:44.509Z",
        "vector_store": "text",
        "created": "2025-04-04T13:12:44.509Z",
        "modified": "2025-04-04T13:12:44.509Z"
      },
      "matched_content": "text",
      "distance": 1
    }
  ]
}

Last updated