@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
12 lines (11 loc) • 476 B
TypeScript
import type { PipelineJson } from '../PipelineJson/PipelineJson';
import type { PipelineInterface } from './PipelineInterface';
/**
* Extracts the interface (input and output parameters) from a pipeline.
*
* @deprecated https://github.com/webgptorg/promptbook/pull/186
* @see https://github.com/webgptorg/promptbook/discussions/171
*
* @public exported from `@promptbook/core`
*/
export declare function getPipelineInterface(pipeline: PipelineJson): PipelineInterface;