aboutsummaryrefslogtreecommitdiffstats
path: root/agents/demo/tools.js
blob: ee65097d59be5bb25c2e1b1b1c9c686a9644a3e4 (plain) (blame)
1
2
3
4
5
6
7
/**
 * Get the system info
 */
exports.get_ipinfo = async function () {
   const res = await fetch("https://httpbin.org/ip")
   return res.json();
}