Skip to main content
Version: 2.0

List encoders

GET 

/v2/encoders

Encoders are used to store and retrieve from a corpus.

Request

Query Parameters

    filter string

    A regular expression against encoder names and descriptions.

    limit int32

    Possible values: >= 1 and <= 100

    Default value: 10

    The maximum number of results to return in the list.

    page_key string

    Used to the retrieve the next page of encoders after the limit has been reached.

Responses

List of encoders.

Schema
    encoders object[]
  • Array [
  • id string

    Possible values: Value must match regular expression enc_[0-9]+$

    The Encoder ID.

    name string

    The encoder name.

    output_dimensions int32

    When this encoder is used to create an embedding, it shows the count of dimensions for the output embedding. A high dimensionality will consume more storage space, but it allows for an increase the quality of the embedding.

    description string

    The encoder description.

    default boolean

    Indicates whether the encoder is default used when creating a corpus.

    enabled boolean

    Indicates whether the encoder is enabled.

  • ]
  • metadata object

    The standard metadata in the response of a list operation.

    page_key string

    When requesting the next page of this list, this is needed as a query parameter.

Loading...