UNPKG

prompt-version-manager

Version:

Centralized prompt management system for Human Behavior AI agents

14 lines 568 B
/** * Simplified PVM API for TypeScript * * Provides the same simple interface as the Python version: * - prompts() function for loading and rendering templates * - model.complete() for executing with auto-tracking * - Native structured output support * - Automatic chain detection */ export { prompts } from './prompts'; export { model, ModelResponse } from './model'; export { VersioningEngine as Repository } from '../versioning/operations'; export type { StructuredOutput, ModelOptions, PromptVariables } from './types'; //# sourceMappingURL=index.d.ts.map