@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
19 lines (18 loc) • 845 B
TypeScript
import type { ReservedParameters_private } from './ReservedParameters_private';
import type { string_parameter_name } from './string_name';
import type { string_parameter_value_private } from './string_parameter_value_private';
/**
* Parameters of the pipeline
*
* There are three types of parameters:
* - **INPUT PARAMETERs** are required to execute the pipeline.
* - **Intermediate parameters** are used internally in the pipeline.
* - **OUTPUT PARAMETERs** are not used internally in the pipeline, but are returned as the result of the pipeline execution.
*
* Note: [🚉] This is fully serializable as JSON
*
* @see https://ptbk.io/parameters
*
* @private internal utility of `Parameters.ts`
*/
export type Parameters_private = Exclude<Record<string_parameter_name, string_parameter_value_private>, ReservedParameters_private>;