Interface that defines the information about a vector store, including the vector store itself, its name, and description.

interface VectorStoreInfo {
    description: string;
    name: string;
    vectorStore: VectorStoreInterface;
}

Properties

description: string
name: string
vectorStore: VectorStoreInterface

Generated using TypeDoc