Files
llm-functions/agents/demo/tools.js
sigoden d2a537c374 refactor: several improvements (#132)
- js export expression
- check args regarding run-agent/run-tool
2024-11-30 17:14:21 +08:00

8 lines
149 B
JavaScript

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