> ## Documentation Index
> Fetch the complete documentation index at: https://docs.upsonic.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Basic Deep Agent Example

> Simple example demonstrating core capabilities

## About Example

A simple example demonstrating DeepAgent's core capabilities: automatic todo creation, file management, and task execution.

## Full Code

```python theme={null}
import asyncio
from upsonic.agent.deepagent import DeepAgent
from upsonic import Task

async def main():
    # Create a Deep Agent
    agent = DeepAgent(model="anthropic/claude-sonnet-4-5")
    
    # Complex task that benefits from planning
    task = Task(description="""
    Analyze Python web frameworks and create a comprehensive report.
    
    Requirements:
    1. Research Django, Flask, and FastAPI
    2. Compare their features
    3. Create /reports/frameworks_analysis.txt with:
       - Executive summary
       - Feature comparison
       - Recommendations
    
    Ensure all tasks are completed.
    """)
    
    # Execute
    result = await agent.do_async(task)
    print(result)
    
    # Check plan created
    plan = agent.get_current_plan()
    print(f"\n📋 Execution Plan ({len(plan)} tasks):")
    for todo in plan:
        status_icon = "✅" if todo['status'] == 'completed' else "⏳"
        print(f"  {status_icon} [{todo['status']}] {todo['content']}")
    
    # Check files created
    files = await agent.filesystem_backend.glob("/**/*.txt")
    print(f"\n📁 Files Created: {files}")

asyncio.run(main())
```

## What Happens

1. **Planning**: Agent creates a todo list automatically
2. **Execution**: Agent works through each todo item
3. **File Management**: Agent creates files in virtual filesystem
4. **Completion**: Agent ensures all todos are completed
