@agentica/benchmark
Version:
Agentic AI Library specialized in LLM Function Calling
19 lines • 468 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MathUtil = void 0;
/**
* @module
* This file contains functions to work with MathUtil.
*
* @author Wrtn Technologies
*/
exports.MathUtil = {
/**
* Round a number to 2 decimal places.
*
* @param value - The number to round.
* @returns The rounded number.
*/
round: (value) => Math.floor(value * 100) / 100,
};
//# sourceMappingURL=MathUtil.js.map