UNPKG

@promptbook/azure-openai

Version:

Promptbook: Run AI apps in plain human language across multiple models and platforms

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'; };