Pinecone TypeScript SDK - v8.1.0
    Preparing search index...

    Interface EmbeddingsList

    Embeddings generated for the input.

    EmbeddingsList

    interface EmbeddingsList {
        data: Embedding[];
        model: string;
        usage: EmbeddingsListUsage;
        vectorType: string;
    }
    Index
    data: Embedding[]

    The embeddings generated for the inputs.

    EmbeddingsList

    model: string

    The model used to generate the embeddings

    EmbeddingsList

    EmbeddingsList

    vectorType: string

    Indicates whether the response data contains 'dense' or 'sparse' embeddings.

    EmbeddingsList