Python SDK
Note as of 0.1.1 Aesoperator SDK is still experimental and in development
Installation
pip install computer-agentAuthentication
from aesoperator import Aesoperator
aesop = Aesoperator(api_key="your_api_key_here")aesop = Aesoperator(api_key="your_key", api_base="https://api.aesoperator.com/v2")Discovering Functions
functions = aesop.list_functions()
for func in functions:
print(func.name, func.description)Invoking Functions
Handling Results
Composing Functions
Working with Pages and Memory
Examples
Web Scraping
Question Answering
Automated Data Processing
Last updated