UNPKG

@promptbook/remote-client

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

19 lines (18 loc) 619 B
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"; };