@promptbook/cli 0.61.0-16 → 0.61.0-17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,5 @@
1
1
  import { createCollectionFromDirectory } from '../collection/constructors/createCollectionFromDirectory';
2
+ import { createLlmToolsFromEnv } from '../llm-providers/_common/createLlmToolsFromEnv';
2
3
  import { PROMPTBOOK_VERSION } from '../version';
3
4
  export { PROMPTBOOK_VERSION };
4
- export { createCollectionFromDirectory };
5
+ export { createCollectionFromDirectory, createLlmToolsFromEnv };
@@ -4,6 +4,7 @@ import type { PipelineJson } from '../types/PipelineJson/PipelineJson';
4
4
  */
5
5
  export declare function isPipelinePrepared(pipeline: PipelineJson): boolean;
6
6
  /**
7
+ * TODO: [🐠] Maybe base this on `makeValidator`
7
8
  * TODO: [🔼] Export via core or utils
8
9
  * TODO: [🧊] Pipeline can be partially prepared, this should return true ONLY if fully prepared
9
10
  */