@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
14 lines (13 loc) • 445 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';
};