UNPKG

@promptbook/azure-openai

Version:

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

16 lines (15 loc) 505 B
import type { string_markdown_text } from '../../types/typeAliases'; import type { string_name } from '../../types/typeAliases'; /** * Parsed PARAMETER command * * @see ./parameterCommandParser.ts for more details * @public exported from `@promptbook/editable` */ export type ParameterCommand = { readonly type: 'PARAMETER'; readonly isInput: boolean; readonly isOutput: boolean; readonly parameterName: string_name; readonly parameterDescription: string_markdown_text | null; };