UNPKG

@promptbook/azure-openai

Version:

Promptbook: Run AI apps in plain human language across multiple models and platforms

14 lines (13 loc) 726 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>; /** * Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment */