import { BaseMessage } from "@langchain/core/messages"; import { D1Database } from "@cloudflare/workers-types"; import { BaseListChatMessageHistory } from "@langchain/core/chat_history"; //#region src/message_histories.d.ts /** * Type definition for the input parameters required when instantiating a * CloudflareD1MessageHistory object. */ type CloudflareD1MessageHistoryInput = { tableName?: string; sessionId: string; database?: D1Database; }; /** * Class for storing and retrieving chat message history from a * Cloudflare D1 database. Extends the BaseListChatMessageHistory class. * @example * ```typescript * const memory = new BufferMemory({ * returnMessages: true, * chatHistory: new CloudflareD1MessageHistory({ * tableName: "stored_message", * sessionId: "example", * database: env.DB, * }), * }); * * const chainInput = { input }; * * const res = await memory.chatHistory.invoke(chainInput); * await memory.saveContext(chainInput, { * output: res, * }); * ``` */ declare class CloudflareD1MessageHistory extends BaseListChatMessageHistory { lc_namespace: string[]; database: D1Database; private tableName; private sessionId; private tableInitialized; constructor(fields: CloudflareD1MessageHistoryInput); private ensureTable; /** * Method to retrieve all messages from the Cloudflare D1 database for the * current session. * @returns Promise that resolves to an array of BaseMessage objects. */ getMessages(): Promise; /** * Method to add a new message to the Cloudflare D1 database for the current * session. * @param message The BaseMessage object to be added to the database. * @returns Promise that resolves to void. */ addMessage(message: BaseMessage): Promise; /** * Method to delete all messages from the Cloudflare D1 database for the * current session. * @returns Promise that resolves to void. */ clear(): Promise; } //#endregion export { CloudflareD1MessageHistory, CloudflareD1MessageHistoryInput }; //# sourceMappingURL=message_histories.d.cts.map