@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
11 lines (10 loc) • 312 B
TypeScript
import type { ForeachJson } from './ForeachJson';
/**
* Parsed FOREACH command which is used to iterate over a table of values
*
* @see ./foreachCommandParser.ts for more details
* @public exported from `@promptbook/editable`
*/
export type ForeachCommand = {
readonly type: 'FOREACH';
} & ForeachJson;