aethershell 0.3.1

The world's first multi-agent shell with typed functional pipelines and multi-modal AI
Documentation
1
2
3
4
5
6
7
8
9
10
11
resp = http_get("https://api.github.com")

# Access response fields with dot notation
print("Status: " + resp.status)
print("Response type: " + type_of(resp))
print("Response has " + len(keys(resp)) + " fields")
print("")

# Show field names
print("Fields in response:")
print(keys(resp))