@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
17 lines (16 loc) • 534 B
TypeScript
/**
* ExecutionReport is result of executing one promptbook
* It is kind of a variant of the promptbook useful for debugging, logging and transparency for users.
*
* It can have 2 formats:
* - _(this)_ **.md file** created from the **JSON** format
* - **JSON** format
*
* @see https://github.com/webgptorg/promptbook#execution-report
*/
export type ExecutionReportString = string & {
readonly _type: 'ExecutionReportString';
};
/**
* TODO: [💩] Better validation or remove branded type and make it just string
*/