Python SDK
Note as of 0.1.1 Aesoperator SDK is still experimental and in development
The Aesoperator Python SDK provides a convenient way to discover, invoke, and compose Operator functions from your Python code.
Installation
Install the SDK using pip:
The SDK requires Python 3.7 or later. It depends on the requests
library for making HTTP requests to the Aesoperator API.
Authentication
To use the SDK, you first need to obtain an API key from your Aesoperator account dashboard. Then initialize the SDK client with your key:
This client instance will automatically authenticate with the Aesoperator service and handle token refresh. You can also specify a custom API endpoint if needed:
Discovering Functions
List the Operator functions available to your account:
This returns a list of AesopFunction
objects, with metadata like the function name, description, input and output schemas, and usage limits.
You can also search for functions by keyword:
And retrieve an individual function by name:
Invoking Functions
To invoke an Operator function, call the invoke
method with the function name and input parameters:
The input parameters are validated against the function's schema. The invocation happens synchronously and the method returns when the function completes.
For long-running functions, you can invoke them asynchronously:
This immediately returns an AesopInvocation
object with metadata about the in-progress invocation. You can then poll for completion:
Handling Results
Operator function results are returned as Python objects deserialized from JSON. The exact structure depends on the function's output schema, but often includes the main output
payload along with metadata like processing latency
and logs
.
If the function returns an error, an AesopError
exception is raised with details:
Composing Functions
You can use the SDK to compose multiple Operator function calls into a workflow. For example, to generate questions and answers from a web page:
The SDK also provides a compose
method to define a sequence of function calls as a reusable pipeline:
Each step of the composition specifies the function to invoke and its parameters. You can reference the outputs of previous steps using the dot notation step_name.output
.
Invoking the composed pipeline executes the steps in order and returns the final result:
Working with Pages and Memory
The SDK provides convenience methods for working with Page and Memory objects in your function invocations.
To load a Page object from a URL and pass it to a function:
And to read and write key-value pairs from Aesoperator's persistent Memory:
You can also subscribe to changes in specific Memory keys and trigger function invocations:
Now whenever the user_id
key is updated in Memory, the handle_new_user
function will be called with the new value.
Examples
Here are a few examples demonstrating common patterns with the Aesoperator Python SDK.
Web Scraping
Scrape a list of links from a web page and store them in Memory:
Question Answering
Generate an answer to a question by searching a set of documents and composing the most relevant passages:
Automated Data Processing
Watch a database for new records and automatically process them using a sequence of Operator functions:
This sets up a listener that triggers the process_new_record
pipeline whenever a record is inserted into the new_records
table. The pipeline validates the record, extracts key entities from its description field, looks up additional metadata for each entity, and updates a search index with the enriched record data.
Last updated