Interface for the configuration options for a ZepCloudVectorStore instance.

interface IZepCloudConfig {
    collectionName: string;
    apiKey?: string;
    client?: ZepClient;
    description?: string;
    metadata?: Record<string, never>;
}

Properties

collectionName: string
apiKey?: string
client?: ZepClient
description?: string
metadata?: Record<string, never>

Generated using TypeDoc