@promptbook/cli 0.71.0-15 → 0.71.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,19 +1,11 @@
|
|
|
1
|
+
import type { PrepareAndScrapeOptions } from '../../../prepare/PrepareAndScrapeOptions';
|
|
1
2
|
import type { LlmExecutionToolsWithTotalUsage } from '../utils/count-total-usage/LlmExecutionToolsWithTotalUsage';
|
|
2
|
-
type GetLlmToolsForCliOptions = {
|
|
3
|
-
/**
|
|
4
|
-
* @@@
|
|
5
|
-
*
|
|
6
|
-
* @default false
|
|
7
|
-
*/
|
|
8
|
-
isCacheReloaded?: boolean;
|
|
9
|
-
};
|
|
10
3
|
/**
|
|
11
4
|
* Returns LLM tools for CLI
|
|
12
5
|
*
|
|
13
6
|
* @private within the repository - for CLI utils
|
|
14
7
|
*/
|
|
15
|
-
export declare function $provideLlmToolsForCli(options?:
|
|
16
|
-
export {};
|
|
8
|
+
export declare function $provideLlmToolsForCli(options?: Pick<PrepareAndScrapeOptions, 'isCacheCleaned'>): LlmExecutionToolsWithTotalUsage;
|
|
17
9
|
/**
|
|
18
10
|
* Note: [🟡] Code in this file should never be published outside of `@promptbook/cli`
|
|
19
11
|
* TODO: [👷♂️] @@@ Manual about construction of llmTools
|