UNPKG

@promptbook/remote-client

Version:

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

13 lines (12 loc) 319 B
import type { string_name } from '../../types/string_name'; /** * Parsed POSTPROCESS command * * @see ./postprocessCommandParser.ts for more details * * @public exported from `@promptbook/editable` */ export type PostprocessCommand = { readonly type: 'POSTPROCESS'; readonly functionName: string_name; };