UNPKG

@promptbook/remote-server

Version:

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

11 lines (10 loc) 581 B
import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions'; import type { ExecutionTools } from '../ExecutionTools'; /** * Note: There is unfortunately no equivalent for this function in the browser environment * because it is not possible automatically detect configured LLM providers * you need to provide them manually BUT you can help by utilities like `$provideScrapersForBrowser` * * @public exported from `@promptbook/node` */ export declare function $provideExecutionToolsForNode(options?: PrepareAndScrapeOptions): Promise<ExecutionTools>;