import type { InputParameterJson } from '../PipelineJson/ParameterJson'; import type { OutputParameterJson } from '../PipelineJson/ParameterJson'; /** * @@@ * * Note: [🚉] This is fully serializable as JSON * @see https://github.com/webgptorg/promptbook/discussions/171 */ export type PipelineInterface = { /** * @@@ * * Note: Sorted alphabetically */ readonly inputParameters: ReadonlyArray; /** * @@@ * * Note: Sorted alphabetically */ readonly outputParameters: ReadonlyArray; };