UNPKG

@promptbook/remote-server

Version:

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

25 lines (24 loc) 1.12 kB
import '../../../_packages/cli.index'; import type { LlmExecutionToolsWithTotalUsage } from '../utils/count-total-usage/LlmExecutionToolsWithTotalUsage'; import type { CreateLlmToolsFromConfigurationOptions } from './createLlmToolsFromConfiguration'; /** * Options for get Llm tools for testing and scripts and playground. */ type GetLlmToolsForTestingAndScriptsAndPlaygroundOptions = CreateLlmToolsFromConfigurationOptions & { /** * Flag indicating whether the cache should be reloaded or reused * When set to true, the existing cache will not be used but thinks will be still saved to the cache * * @default false */ isCacheReloaded?: boolean; }; /** * Returns LLM tools for testing purposes * * Note: `$` is used to indicate that this function is not a pure function - it uses filesystem to access `.env` file * * @private within the repository - JUST FOR TESTS, SCRIPTS AND PLAYGROUND */ export declare function $provideLlmToolsForTestingAndScriptsAndPlayground(options?: GetLlmToolsForTestingAndScriptsAndPlaygroundOptions): Promise<LlmExecutionToolsWithTotalUsage>; export {};