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