Tasks
Task Structure
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"
)Task Configuration
Executing Tasks
Task Lifecycle
Task Memory
Task Composition
Example Tasks
Web Research Task
Data Processing Task
Monitoring Task
Best Practices
Learn More
Last updated