UNPKG

@promptbook/remote-server

Version:

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

29 lines (28 loc) 894 B
import type { string_url } from '../../../types/string_url'; import type { PipelineCollection } from '../PipelineCollection'; /** * Options for `createPipelineCollectionFromDirectory` function */ type CreatePipelineCollectionFromUrlyOptions = { /** * If true, the collection creation outputs information about each file it reads * * @default false */ readonly isVerbose?: boolean; /** * If true, directory will be scanned only when needed not during the construction * * @default false */ readonly isLazyLoaded?: boolean; }; /** * Constructs Promptbook from remote Promptbase URL * * @returns PipelineCollection * * @public exported from `@promptbook/core` */ export declare function createPipelineCollectionFromUrl(url: string_url | URL, options: CreatePipelineCollectionFromUrlyOptions): Promise<PipelineCollection>; export {};