UNPKG

prompt-version-manager

Version:

Centralized prompt management system for Human Behavior AI agents

20 lines 1.09 kB
"use strict"; /** * 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 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.Repository = exports.ModelResponse = exports.model = exports.prompts = void 0; var prompts_1 = require("./prompts"); Object.defineProperty(exports, "prompts", { enumerable: true, get: function () { return prompts_1.prompts; } }); var model_1 = require("./model"); Object.defineProperty(exports, "model", { enumerable: true, get: function () { return model_1.model; } }); Object.defineProperty(exports, "ModelResponse", { enumerable: true, get: function () { return model_1.ModelResponse; } }); var operations_1 = require("../versioning/operations"); Object.defineProperty(exports, "Repository", { enumerable: true, get: function () { return operations_1.VersioningEngine; } }); //# sourceMappingURL=index.js.map