feat: Install built-in agents

This commit is contained in:
2025-10-10 13:37:05 -06:00
parent c8984cf91a
commit ca5bfd6e8f
15 changed files with 526 additions and 17 deletions
+9
View File
@@ -0,0 +1,9 @@
import urllib.request
def get_ipinfo():
"""
Get the ip info
"""
with urllib.request.urlopen("https://httpbin.org/ip") as response:
data = response.read()
return data.decode('utf-8')