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