@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
29 lines (28 loc) • 789 B
TypeScript
import type { PipelineExecutor } from '../../execution/PipelineExecutor';
import type { PipelineJson } from '../../pipeline/PipelineJson/PipelineJson';
/**
* Options for running the interactive chatbot
*/
type RunInteractiveChatbotOptions = {
/**
* Prepared pipeline to run
*/
pipeline: PipelineJson;
/**
* Prepared pipeline executor
*/
pipelineExecutor: PipelineExecutor;
/**
* Whether to show verbose output
*/
isVerbose: boolean;
};
/**
* Run the interactive chatbot in CLI
*
* @returns Never-ending promise or process exit
*
* @private internal function of `promptbookCli` and `initializeRunCommand`
*/
export declare function runInteractiveChatbot(options: RunInteractiveChatbotOptions): Promise<void | never>;
export {};