@promptbook/node
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
20 lines (19 loc) • 754 B
TypeScript
/// <reference types="node" />
import type { PreparedAgentsServerRuntime } from './PreparedAgentsServerRuntime';
/**
* Inputs controlling one cached Agents Server production build.
*/
type EnsureAgentsServerBuildOptions = {
readonly appPath?: string;
readonly environment?: NodeJS.ProcessEnv;
readonly isBuildForced?: boolean;
readonly onBuildEvent?: (event: string) => void;
readonly onBuildOutput?: (chunk: string) => void;
};
/**
* Ensures that the local Agents Server production build exists and matches its source fingerprint.
*
* @private internal utility of `buildAgentsServer`
*/
export declare function ensureAgentsServerBuild(options?: EnsureAgentsServerBuildOptions): Promise<PreparedAgentsServerRuntime>;
export {};