UNPKG

@unified-llm/core

Version:

Unified LLM interface (in-memory).

28 lines 963 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getProjectInfo = void 0; const unified_api_js_1 = require("../types/unified-api.js"); exports.getProjectInfo = (0, unified_api_js_1.defineTool)({ type: 'function', function: { name: 'getProjectInfo', description: 'Returns detailed information about this project that would be impossible to guess', parameters: { type: 'object', properties: {}, required: [] } }, handler: async () => { return JSON.stringify({ name: 'unified-llm', version: '0.2.0', author: 'rhyizm', projectId: 'unified-llm-core', internalBuildNumber: 42, lastModified: '2025-06-09T16:30:00Z', hiddenMessage: 'This information could only come from calling this function!' }); } }); //# sourceMappingURL=getProjectInfo.js.map