@unified-llm/core
Version:
Unified LLM interface.
19 lines • 518 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCurrentTime = void 0;
exports.getCurrentTime = {
type: 'function',
function: {
name: 'getCurrentTime',
description: 'Returns the current date and time in ISO format',
parameters: {
type: 'object',
properties: {},
required: []
}
},
handler: async () => {
return new Date().toISOString();
}
};
//# sourceMappingURL=getCurrentTime.js.map