@promptbook/remote-client
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
23 lines (22 loc) • 770 B
TypeScript
import type { Usage } from '../../execution/Usage';
import type { number_id } from '../../types/typeAliases';
import type { string_promptbook_version } from '../../version';
export type PreparationJson = {
/**
* Incremental ID of the preparation
*/
readonly id: number_id;
/**
* Version of the promptbook used for the preparation
*/
readonly promptbookVersion: string_promptbook_version;
/**
* Usage of the prompt execution
*/
readonly usage: Usage;
};
/**
* TODO: [🍙] Make some standard order of json properties
* TODO: Maybe put here used `modelName`
* TODO: [🍥] When using `date` it changes all examples .bookc files each time so until some more elegant solution omit the time from prepared pipeline
*/