dina-agi
Version:
DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.
14 lines (13 loc) • 480 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.randomIntDocs = void 0;
const randomIntDocs = exports.randomIntDocs = {
name: 'randomInt',
category: 'Probability',
syntax: ['randomInt(max)', 'randomInt(min, max)', 'randomInt(size)', 'randomInt(size, max)', 'randomInt(size, min, max)'],
description: 'Return a random integer number',
examples: ['randomInt(10, 20)', 'randomInt([2, 3], 10)'],
seealso: ['pickRandom', 'random']
};