@unified-llm/core
Version:
Unified LLM interface.
23 lines • 568 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getAuthor = void 0;
/**
* Returns information about the project author
*/
exports.getAuthor = {
type: 'function',
function: {
name: 'getAuthor',
description: 'Returns the author of this project',
parameters: {
type: 'object',
properties: {},
required: []
}
},
args: {},
handler: async () => {
return 'The author of this project is rhyizm';
}
};
//# sourceMappingURL=getAuthor.js.map