@promptbook/google
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
14 lines (13 loc) • 542 B
TypeScript
import { $Register } from '../../../utils/$Register';
import type { LlmToolsMetadata } from './LlmToolsMetadata';
/**
* Register for LLM tools metadata.
*
* 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 $llmToolsMetadataRegister: $Register<LlmToolsMetadata>;
/**
* TODO: [®] DRY Register logic
*/