@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
14 lines (13 loc) • 583 B
TypeScript
import type { LlmExecutionToolsConstructor } from '../../../execution/LlmExecutionToolsConstructor';
import { $Register } from '../../../utils/misc/$Register';
/**
* Register for LLM tools.
*
* Note: `$` is used to indicate that this interacts with the global scope
* @singleton Only one instance of each register is created per build, but there can be more instances across different builds or environments.
* @public exported from `@promptbook/core`
*/
export declare const $llmToolsRegister: $Register<LlmExecutionToolsConstructor>;
/**
* TODO: [®] DRY Register logic
*/