UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

11 lines (10 loc) 473 B
import type { PipelineJson } from '../../pipeline/PipelineJson/PipelineJson'; import type { PipelineCollection } from './PipelineCollection'; /** * Converts PipelineCollection to serialized JSON * * Note: Functions `pipelineCollectionToJson` and `createPipelineCollectionFromJson` are complementary * * @public exported from `@promptbook/core` */ export declare function pipelineCollectionToJson(collection: PipelineCollection): Promise<ReadonlyArray<PipelineJson>>;