@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
13 lines (12 loc) • 670 B
TypeScript
import type { Executables } from '../execution/Executables';
import type { PrepareAndScrapeOptions } from '../prepare/PrepareAndScrapeOptions';
/**
* Provides paths to required executables (i.e. as Pandoc and LibreOffice) for Node.js environments.
*
* @public exported from `@promptbook/node`
*/
export declare function $provideExecutablesForNode(options?: PrepareAndScrapeOptions): Promise<Executables>;
/**
* TODO: [🧠] Allow to override the executables without need to call `locatePandoc` / `locateLibreoffice` in case of provided
* Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment
*/