@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
16 lines (15 loc) • 745 B
TypeScript
import type { ReadonlyDeep } from 'type-fest';
import type { ExecutionReportJson } from './ExecutionReportJson';
import type { ExecutionReportString } from './ExecutionReportString';
import type { ExecutionReportStringOptions } from './ExecutionReportStringOptions';
/**
* Converts execution report from JSON to string format
*
* @public exported from `@promptbook/core`
*/
export declare function executionReportJsonToString(executionReportJson: ReadonlyDeep<ExecutionReportJson>, options?: Partial<ExecutionReportStringOptions>): ExecutionReportString;
/**
* TODO: Add mermaid chart for every report
* TODO: [🧠] Allow to filter out some parts of the report by options
* TODO: [🧠] Should be in generated file GENERATOR_WARNING
*/