UNPKG

@promptbook/azure-openai

Version:

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

14 lines (13 loc) 699 B
import type { string_executable_path } from '../../types/typeAliases'; import type { LocateAppOptions } from '../locateApp'; /** * Attempts to locate the specified application on a macOS system by checking standard application paths and using mdfind. * Returns the path to the executable if found, or null otherwise. * * @private within the repository */ export declare function locateAppOnMacOs({ macOsName, }: Pick<Required<LocateAppOptions>, 'macOsName'>): Promise<string_executable_path | null>; /** * TODO: [🧠][♿] Maybe export through `@promptbook/node` * Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment */