@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
16 lines (15 loc) • 754 B
TypeScript
import type { ExecutionTools } from '../../../execution/ExecutionTools';
import type { PrepareAndScrapeOptions } from '../../../prepare/PrepareAndScrapeOptions';
import type { Scraper } from '../Scraper';
/**
* Provides a collection of scrapers optimized for browser environments.
* Only includes scrapers that can safely run in a browser context.
*
* Note: Browser scrapers have limitations compared to Node.js scrapers.
*
* 1) `provideScrapersForNode` use as default
* 2) `provideScrapersForBrowser` use in limited browser environment
*
* @public exported from `@promptbook/browser`
*/
export declare function $provideScrapersForBrowser(tools: Pick<ExecutionTools, 'llm'>, options?: PrepareAndScrapeOptions): Promise<ReadonlyArray<Scraper>>;