Type for the input to the AzureCosmosDBNoSQLChatMessageHistory constructor.

interface AzureCosmosDBNoSQLChatMessageHistoryInput {
    client?: CosmosClient;
    connectionString?: string;
    containerName?: string;
    credentials?: TokenCredential;
    databaseName?: string;
    endpoint?: string;
    sessionId: string;
    ttl?: number;
    userId?: string;
}

Properties

client?: CosmosClient
connectionString?: string
containerName?: string
credentials?: TokenCredential
databaseName?: string
endpoint?: string
sessionId: string
ttl?: number
userId?: string