langchain.js
    Preparing search index...

    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;
    }
    Index

    Properties

    description: string
    name: string
    vectorStore: VectorStoreInterface