企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
``` Number.prototype.toFixed = function (exponent) { if (this > 0) { return parseInt(this * Math.pow(10, exponent) + 0.5) / Math.pow(10, exponent); } else { return parseInt(this * Math.pow(10, exponent) - 0.5) / Math.pow(10, exponent); } } ```