@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
17 lines (16 loc) • 562 B
TypeScript
/**
* Markdown export plugin
*
* @public exported from `@promptbook/components`
*/
export declare const mdSaveFormatDefinition: {
readonly formatName: "md";
readonly label: "Markdown";
readonly getContent: ({ messages, participants }: {
readonly title: string;
readonly messages: readonly import("../../types/ChatMessage").ChatMessage[];
readonly participants: readonly import("../../types/ChatParticipant").ChatParticipant[];
}) => string;
readonly mimeType: "text/markdown";
readonly fileExtension: "md";
};