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

    Interface CreateCollectionRequest

    The configuration needed to create a Pinecone collection.

    CreateCollectionRequest

    interface CreateCollectionRequest {
        name: string;
        source: string;
    }
    Index
    name: string

    The name of the collection to be created. Resource name must be 1-45 characters long, start and end with an alphanumeric character, and consist only of lower case alphanumeric characters or '-'.

    CreateCollectionRequest

    source: string

    The name of the index to be used as the source for the collection.

    CreateCollectionRequest