Skip to main content

EntrySearchResponse

Response schema for entry-based vector search.

results object[]required

List of matching entries

  • Array [
  • entry_idEntry Id (integer)required

    Entry ID

    dataset_idDataset Id (integer)required

    Dataset ID

    nameName (string)required

    Entry name

    scoreScore (number)required

    Best matching score from chunks

    matching_chunks object[]required

    Chunks that matched from this entry

  • Array [
  • idId (string)required

    Qdrant point ID

    scoreScore (number)required

    Similarity score (0.0 to 1.0)

    chunk_text object

    Text content of the chunk

    anyOf
    string
    metadata object

    Chunk metadata (dataset_id, entry_id, chunk_index, etc.)

    property name*any

    Chunk metadata (dataset_id, entry_id, chunk_index, etc.)

  • ]
  • content object

    Full entry content from S3 (if available)

    anyOf
    object
  • ]
  • totalTotal (integer)required

    Total number of entries returned

    query_info object

    Query metadata

    property name*any

    Query metadata

    EntrySearchResponse
    {
    "results": [
    {
    "entry_id": 0,
    "dataset_id": 0,
    "name": "string",
    "score": 0,
    "matching_chunks": [
    {
    "id": "string",
    "score": 0,
    "chunk_text": "string",
    "metadata": {}
    }
    ],
    "content": {}
    }
    ],
    "total": 0,
    "query_info": {}
    }