/** * Utility functions for message manager */ import { BaseMessage } from '../../llm/messages'; /** * Save conversation history to file asynchronously */ export declare function saveConversation(inputMessages: BaseMessage[], response: any, target: string, encoding?: string): Promise; /** * Format the conversation including messages and response */ export declare function formatConversation(messages: BaseMessage[], response: any): Promise; //# sourceMappingURL=utils.d.ts.map