Files
llm-functions/agents/demo/tools.js
2024-07-29 17:26:36 +08:00

8 lines
158 B
JavaScript

/**
* Get the system info
*/
exports.get_ipinfo = async function getIpinfo() {
const res = await fetch("https://httpbin.org/ip")
return res.json();
}