16 lines
578 B
Markdown
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
|
|
```
|