From 4b7e33c9f3ad62753871468ab7d1aa1aa505ec42 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: Thu, 4 Jun 2026 13:42:45 +0000 Subject: [PATCH] add README.md --- README.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..654f6c5 --- /dev/null +++ b/README.md @@ -0,0 +1,51 @@ +## Инструкция по установке и запуску + +### 1. Установка `deep-agents-from-scratch` + +```bash +# Clone the repository +git clone https://github.com/langchain-ai/deep-agents-from-scratch.git +cd deep-agents-from-scratch + +# Install with uv (recommended) +uv sync + +# Or install with pip +pip install -e . +``` + +### 2. Установка вашего агента + +```bash +# Create your project directory +mkdir my_deep_agent +cd my_deep_agent + +# Create the file structure as shown above + +# Install dependencies +pip install -r requirements.txt +``` + +### 3. Запуск Ollama + +```bash +# Pull the model +ollama pull llama3.2 + +# Start Ollama (if not running) +ollama serve +``` + +### 4. Запуск агента + +```bash +# Run with default task +python -m deep_agent.run + +# Run with custom task +python -m deep_agent.run "Find latest news about AI and save to ai_news.md" + +# Specify export directory +python -m deep_agent.run --export-dir ./my_results "Research quantum computing" +``` \ No newline at end of file