From 3e132061f28bfff82fe299a42191a150af277188 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=B4=D0=B5=D0=BB=D0=B8=D0=BD=D0=B0=20=D0=A1=D0=B0?= =?UTF-8?q?=D1=82=D1=82=D0=B0=D1=80=D0=BE=D0=B2=D0=B0?= Date: Mon, 1 Jun 2026 18:31:08 +0000 Subject: [PATCH] Add README --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 README.md 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 +```