UNPKG

@promptbook/azure-openai

Version:

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

21 lines (20 loc) 829 B
import type { ExecutionTools } from '../../execution/ExecutionTools'; import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions'; import { DocumentScraper } from './DocumentScraper'; /** * Creates a scraper for document content. * * @public exported from `@promptbook/documents` */ export declare const createDocumentScraper: ((tools: Pick<ExecutionTools, 'llm'>, options: PrepareAndScrapeOptions) => DocumentScraper) & import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{ title: string; packageName: string; className: string; mimeTypes: string[]; documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@"; isAvailableInBrowser: false; requiredExecutables: "Pandoc"[]; }>; /** * TODO: [🎶] Naming "constructor" vs "creator" vs "factory" */