UNPKG

@promptbook/remote-server

Version:

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

23 lines (22 loc) 587 B
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<InputParameterJson>; /** * @@@ * * Note: Sorted alphabetically */ readonly outputParameters: ReadonlyArray<OutputParameterJson>; };