UNPKG

@promptbook/azure-openai

Version:

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

12 lines (11 loc) 361 B
import type { string_formfactor_name } from '../../formfactors/_common/string_formfactor_name'; /** * Parsed FORMFACTOR command * * @see ./formfactorCommandParser.ts for more details * @public exported from `@promptbook/editable` */ export type FormfactorCommand = { readonly type: 'FORMFACTOR'; readonly formfactorName: string_formfactor_name; };