@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
11 lines (10 loc) • 451 B
TypeScript
import type { PipelineInterface } from './PipelineInterface';
/**
* Checks if two pipeline interfaces are structurally identical.
*
* @deprecated https://github.com/webgptorg/promptbook/pull/186
* @see https://github.com/webgptorg/promptbook/discussions/171
*
* @public exported from `@promptbook/core`
*/
export declare function isPipelineInterfacesEqual(pipelineInterface1: PipelineInterface, pipelineInterface2: PipelineInterface): boolean;