aboutsummaryrefslogtreecommitdiffstats
path: root/agents/demo/tools.js
blob: 6a5c071dbdc9873cb90300038eb1e9e0c9b06ebd (plain) (blame)
1
2
3
4
5
6
7
8
const os = require("node:os");
/**
 * Get the system info
 */
exports.get_sysinfo = function getSysinfo() {
    return `OS: ${os.type()}
Arch: ${os.arch()}`
}