UNPKG

@promptbook/remote-server

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

21 lines (20 loc) 793 B
import type { ExecutionTools } from '../../execution/ExecutionTools'; import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions'; import { MarkdownScraper } from './MarkdownScraper'; /** * @@@ * * @public exported from `@promptbook/markdown-utils` */ export declare const createMarkdownScraper: ((tools: Pick<ExecutionTools, 'llm'>, options: PrepareAndScrapeOptions) => MarkdownScraper) & import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{ title: string; packageName: string; className: string; mimeTypes: string[]; documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@"; isAvilableInBrowser: true; requiredExecutables: never[]; }>; /** * TODO: [🎶] Naming "constructor" vs "creator" vs "factory" */