Add README

This commit is contained in:
2026-06-01 18:31:08 +00:00
commit 3e132061f2
+15
View File
@@ -0,0 +1,15 @@
# 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
```