UNPKG

@promptbook/azure-openai

Version:

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

17 lines (16 loc) 632 B
import type { ExecCommandOptions } from './ExecCommandOptions'; /** * Run one command in a shell * * * Note: There are 2 similar functions in the codebase: * - `$execCommand` which runs a single command * - `$execCommands` which runs multiple commands * Note: `$` is used to indicate that this function is not a pure function - it runs a command in a shell * * @public exported from `@promptbook/node` */ export declare function $execCommand(options: ExecCommandOptions): Promise<string>; /** * Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment */