Core Concepts
Note as of 0.1.1 Aesoperator SDK is still experimental and in development, these are functions that are still experimental
Task
task = aesop.Task(
name="analyze_sales_data",
description="Process quarterly sales reports and generate summary",
inputs={
"data_source": "sales_q4_2024.xlsx",
"output_format": "powerpoint",
"metrics": ["revenue", "growth", "forecasts"]
},
system_access=["excel", "powerpoint", "local_files"]
)System Access
Memory & Context
In the backend, Aesoperator maintains a persistent key-value store for its context:
Actions
System Actions
Application Actions
Data Actions
Function Composition
Last updated