@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
15 lines (14 loc) • 666 B
TypeScript
import type { PipelineJson } from '../../../pipeline/PipelineJson/PipelineJson';
import type { PipelineCollection } from '../PipelineCollection';
/**
* Creates `PipelineCollection` from array of PipelineJson or PipelineString
*
* Note: Functions `pipelineCollectionToJson` and `createPipelineCollectionFromJson` are complementary
* Note: Syntax, parsing, and logic consistency checks are performed on all sources during build
*
* @param promptbookSources
* @returns PipelineCollection
*
* @public exported from `@promptbook/core`
*/
export declare function createPipelineCollectionFromJson(...promptbooks: ReadonlyArray<PipelineJson>): PipelineCollection;