@promptbook/node
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
19 lines (18 loc) • 549 B
TypeScript
/**
* Paths needed after the Agents Server production build is ready.
*
* @private internal type of `buildAgentsServer`
*/
export type AgentsServerBuildArtifacts = {
readonly appPath: string;
readonly nodeModulesPath: string;
readonly nextCliPath: string;
};
/**
* Runtime paths resolved for Agents Server commands before choosing build or dev execution.
*
* @private internal type of `buildAgentsServer`
*/
export type PreparedAgentsServerRuntime = AgentsServerBuildArtifacts & {
readonly isAppPathMaterialized: boolean;
};