@squidcloud/client
    Preparing search index...

    Interface IntegrationEmbeddingModelSpec

    Represents an embedding model provided by an OpenAI-compatible integration. Unlike chat's IntegrationModelSpec, this includes dimensions because the same embedding model can be configured with different output dimensions.

    interface IntegrationEmbeddingModelSpec {
        dimensions: number;
        integrationId: string;
        model: string;
    }
    Index

    Properties

    dimensions: number

    The number of dimensions in the embedding vector output.

    integrationId: string

    The ID of the integration providing the embedding model.

    model: string

    The model name as recognized by the provider.