UNPKG

@promptbook/azure-openai

Version:

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

12 lines (11 loc) 296 B
import type { SectionType } from '../../types/SectionType'; /** * Parsed SECTION command * * @see ./sectionCommandParser.ts for more details * @public exported from `@promptbook/editable` */ export type SectionCommand = { readonly type: 'SECTION'; readonly taskType: SectionType; };