interface VectorStore {
    chunking_strategy?: FileChunkingStrategyParam;
    file_ids?: string[];
    metadata?: unknown;
}

Properties

chunking_strategy?: FileChunkingStrategyParam

The chunking strategy used to chunk the file(s). If not set, will use the auto strategy. Only applicable if file_ids is non-empty.

file_ids?: string[]

A list of file IDs to add to the vector store. There can be a maximum of 10000 files in a vector store.

metadata?: unknown

Set of 16 key-value pairs that can be attached to a vector store. This can be useful for storing additional information about the vector store in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long.