Files
2026-06-01 18:31:08 +00:00

16 lines
578 B
Markdown

# DeepAgent from Scratch
This repository contains a minimal implementation of a **Deep Agent** based on the *Deep Agents from Scratch* course. The agent can:
1. Search the web for information.
2. Create virtual files with the retrieved data.
3. Export those virtual files to the real filesystem at the end of its run.
## Project structure
```
deepagent-scratch/
├── agent.py # Main agent implementation
├── utils.py # Helper functions (search, file handling)
├── requirements.txt # Dependencies
└── README.md # This file
```