UNPKG

@promptbook/gemini

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

17 lines (16 loc) 528 B
/** * ExecutionReport is result of executing one promptbook * It is kind of a variant of the promptbook usefull 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 */