@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
11 lines (10 loc) • 525 B
TypeScript
import type { ToolFunction } from '../../scripting/javascript/JavascriptExecutionToolsOptions';
/**
* Resolves the server-side implementation of the `run_browser` tool for Node.js environments.
*
* This uses fully lazy resolution to keep CLI startup independent from optional browser tooling.
* When the server tool cannot be resolved, the fallback implementation throws a helpful error.
*
* @private internal utility for USE BROWSER commitment
*/
export declare function resolveRunBrowserToolForNode(): ToolFunction;