commit 3e132061f28bfff82fe299a42191a150af277188 Author: Аделина Саттарова Date: Mon Jun 1 18:31:08 2026 +0000 Add README diff --git a/README.md b/README.md new file mode 100644 index 0000000..1747f82 --- /dev/null +++ b/README.md @@ -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 +```