Tasks are the primary way to define work for Aesoperator to perform. A Task represents a high-level goal or objective that will be broken down into a series of actions and function calls.
Task Structure
A Task consists of:
from aesoperator import Task, TaskConfig
task = Task(
name="research_topic",
description="Research and summarize information about a given topic",
config=TaskConfig(
max_pages=10,
max_duration_seconds=300,
allowed_domains=["wikipedia.org", "arxiv.org"]
),
inputs={
"topic": "artificial intelligence",
"depth": "technical"
},
memory_scope="session"
)
Key components:
name: Unique identifier for the task
description: Human-readable description of what the task does
config: Runtime constraints and settings
inputs: Input parameters that control task behavior
memory_scope: How long to persist memory ("session", "permanent", etc.)
Task Configuration
The TaskConfig object lets you control how the task executes:
config = TaskConfig(
# Resource limits
max_pages=10, # Maximum pages to visit
max_duration_seconds=300, # Time limit in seconds
max_memory_mb=1024, # Memory limit in MB
# Access controls
allowed_domains=["wikipedia.org"], # Allowed domains to visit
blocked_domains=["ads.com"], # Blocked domains
require_https=True, # Require HTTPS connections
# Browser settings
viewport_width=1920, # Browser viewport width
viewport_height=1080, # Browser viewport height
user_agent="...", # Custom user agent
# Retry behavior
max_retries=3, # Max retry attempts
retry_delay_seconds=1, # Delay between retries
# Rate limiting
requests_per_second=2, # Max requests per second
concurrent_requests=1 # Max concurrent requests
)
Executing Tasks
Tasks can be executed synchronously or asynchronously:
# Synchronous execution
result = aesop.execute_task(task)
print(f"Task completed with result: {result}")
# Asynchronous execution
execution = aesop.execute_task_async(task)
execution_id = execution.id
# Poll for completion
while True:
status = aesop.get_task_status(execution_id)
if status.state == "completed":
result = status.result
break
time.sleep(1)
Task Lifecycle
A task goes through several states during execution:
pending: Task is queued for execution
running: Task is actively executing
completed: Task finished successfully
failed: Task encountered an error
cancelled: Task was manually cancelled
You can monitor task progress and get detailed status: