Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.auvy.ai/llms.txt

Use this file to discover all available pages before exploring further.

Recollections API

Recollections group document-lane resources (for example assets) for neurons and traces, scoped for context and retrieval.

List Recollections

Get a list of recollections.
Brain scope required. Include the X-Brain-Id header or configure getBrainId in the public client.
GET /v1/recollections

Headers

HeaderTypeDescription
X-Brain-Idstring (UUID)Required. Brain ID for scoping

Query Parameters

ParameterTypeDescription
limitnumberMaximum number of results (default: 20)
offsetnumberOffset for pagination

Get Recollection

Get a single recollection by ID.
GET /v1/recollections/:id

Path Parameters

ParameterTypeDescription
idstringRecollection UUID

Get Recollection Stats

Get memory (asset) count, chunk count, and embedding-lane lexical RAG row count (resource_chunks, kind rag_embedding) for a recollection.
GET /v1/recollections/:id/stats

Path Parameters

ParameterTypeDescription
idstringRecollection UUID

Response

FieldTypeDescription
resource_countnumberAssets in the recollection after brain filter
chunk_countnumberChunk link rows across those assets
embedding_lane_chunk_row_countnumberRows in resource_chunks with kind rag_embedding (embedding-aligned lexical index for hybrid/fulltext RAG)

Search Recollections

Search within recollections by owner. Supports semantic (vector), keyword (fulltext), or hybrid strategy.
Brain scope required. Include the X-Brain-Id header or brain_id in the request body.
POST /v1/recollections/search

Headers

HeaderTypeDescription
X-Brain-Idstring (UUID)Required. Brain ID for scoping

Request Body

FieldTypeRequiredDescription
querystringYesSearch query
owner_typestringYesOwner type (e.g. neuron, trace)
owner_idsstring[]YesOwner UUIDs to scope search
limitnumberNoMax results (default: 10, max: 100)
thresholdnumberNoScore threshold for vector strategy (default: 0.7)
strategystringNovector (default), qdrant (synonym for vector), fulltext, or hybrid. fulltext uses keyword search over the indexed corpus; hybrid merges vector and keyword with RRF.
contextstringNoFilter recollections by context (project or context metadata).
neuron_idstringNoFilter recollections by neuron UUID.
projectstringNoFilter recollections by project metadata.
trace_idstringNoScope search to a trace’s recollection (owner_type= trace when owner_ids empty).
tagsstring[]NoFilter recollections by tags (must match all).

Create Recollection

Create a new recollection.
POST /v1/recollections

Request Body

FieldTypeRequiredDescription
namestringYesRecollection name
descriptionstringNoRecollection description

Update Recollection

Update an existing recollection.
PUT /v1/recollections/:id

Delete Recollection

Delete a recollection.
DELETE /v1/recollections/:id
  • Neurons API - Use recollections in neuron configurations
  • Assets and Artifacts API - Ingest and attach document-lane rows to recollections
  • Search - Hybrid search over resources (scoped recollections use this API’s own search)