UNPKG

@unified-llm/core

Version:

Unified LLM interface (in-memory).

23 lines 649 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getAuthor = void 0; const unified_api_js_1 = require("../types/unified-api.js"); /** * Returns information about the project author */ exports.getAuthor = (0, unified_api_js_1.defineTool)({ type: 'function', function: { name: 'getAuthor', description: 'Returns the author of this project', parameters: { type: 'object', properties: {}, required: [] } }, handler: async () => { return 'The author of this project is rhyizm'; } }); //# sourceMappingURL=getAuthor.js.map