Interface for the configuration options for a ZepCloudVectorStore instance.

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

Properties

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