interface MemoryMongoDbChatNodeParameters {
collectionName?: string;
contextWindowLength?: number;
databaseName?: string;
sessionIdType?: "fromInput" | "customKey";
sessionKey?: string;
}
interface MemoryMongoDbChatNodeParameters {
collectionName?: string;
contextWindowLength?: number;
databaseName?: string;
sessionIdType?: "fromInput" | "customKey";
sessionKey?: string;
}
The collection name to store the chat history in. If collection does not exist, it will be created. Default: "n8n_chat_histories"