UNPKG

@promptbook/remote-server

Version:

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

10 lines (9 loc) 502 B
import type { FilesystemTools } from '../../../execution/FilesystemTools'; import type { PrepareAndScrapeOptions } from '../../../prepare/PrepareAndScrapeOptions'; /** * Provides filesystem access (for example for Node.js-based scrapers) * Creates a standardized filesystem interface that scrapers can use for file operations. * * @public exported from `@promptbook/node` */ export declare function $provideFilesystemForNode(options?: Pick<PrepareAndScrapeOptions, 'isVerbose'>): FilesystemTools;