UNPKG

@promptbook/remote-server

Version:

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

22 lines (21 loc) 559 B
import type { string_executable_path } from '../types/string_filename'; /** * Paths to the external programs executables */ export type Executables = { /** * Path to the `pandoc` executable * * @example 'C:/Users/me/AppData/Local/Pandoc/pandoc.exe' */ pandocPath?: string_executable_path; /** * Path to the LibreOffice executable * * @example 'C:/Program Files/LibreOffice/program/swriter.exe' */ libreOfficePath?: string_executable_path; }; /** * <- TODO: Add !!! `browserPath` to `Executables` */