UNPKG

@promptbook/remote-server

Version:

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

10 lines (9 loc) 209 B
/** * Represents a command that expects a specific format. * * Note: [🚉] This is fully serializable as JSON */ export type FormatCommand = { readonly type: 'FORMAT'; readonly format: 'JSON'; };