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
result1 = [1, 2, 3, 4, 5] | map(fn(x) => x * 2)
print(result1)

result2 = [10, 20, 30, 40, 50] | where(fn(x) => x > 25)
print(result2)

print("Showcase Complete!")