18 lines
537 B
Markdown
18 lines
537 B
Markdown
# DeepAgent Search
|
||
|
||
This repository contains a simple deep agent that can search the web and create virtual files. The agent is built using the `deepagents` library and follows the "deep agents from scratch" pattern.
|
||
|
||
## Features
|
||
|
||
- Web search using DuckDuckGo.
|
||
- Virtual file creation in an in‑memory filesystem.
|
||
- Export virtual files to the real filesystem at the end of the run.
|
||
|
||
## Usage
|
||
|
||
```bash
|
||
python main.py "search query"
|
||
```
|
||
|
||
The agent will perform the search, create virtual files, and write them to the current directory.
|