@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
15 lines (14 loc) • 635 B
TypeScript
import type { PipelineExecutor } from '../../../execution/PipelineExecutor';
import type { string_parameter_name, string_parameter_value } from '../../../types/string_name';
/**
* Executes the pipeline, persists any requested report, and prints the final CLI output.
*
* @private internal utility of `$initializeRunCommand`
*/
export declare function runPipelineExecution(options: {
readonly pipelineExecutor: PipelineExecutor;
readonly inputParameters: Record<string_parameter_name, string_parameter_value>;
readonly isVerbose: boolean;
readonly json?: string;
readonly saveReport?: string;
}): Promise<void>;