UNPKG

@promptbook/remote-client

Version:

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

36 lines (35 loc) 1.07 kB
import type { PipelineJson } from './pipeline/PipelineJson/PipelineJson'; import type { ExportJsonOptions } from './utils/serialization/exportJson'; /** * Order of keys in the pipeline JSON * * @public exported from `@promptbook/core` */ export declare const ORDER_OF_PIPELINE_JSON: ExportJsonOptions<PipelineJson>['order']; /** * Nonce which is used for replacing things in strings * * @private within the repository */ export declare const REPLACING_NONCE = "ptbkauk42kV2dzao34faw7FudQUHYPtW"; /** * @@@ * * @private within the repository */ export declare const RESERVED_PARAMETER_MISSING_VALUE: string; /** * @@@ * * @private within the repository */ export declare const RESERVED_PARAMETER_RESTRICTED: string; /** * The names of the parameters that are reserved for special purposes * * @public exported from `@promptbook/core` */ export declare const RESERVED_PARAMETER_NAMES: readonly ["content", "context", "knowledge", "examples", "modelName", "currentDate"]; /** * Note: [💞] Ignore a discrepancy between file name and entity name */