diff --git a/README.md b/README.md index 17d5299..0fe215d 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,21 @@ -# task-69a474cdc46fd26feae69896 +# LangGraph Agent with Memory and Tool Confirmation -Практическое задание №3: Память и подтверждение действий \ No newline at end of file +This repository contains a simple LangGraph agent that: + +* Keeps a memory of the conversation using `MemorySaver`. +* Pauses before calling any tool and asks the user for confirmation. +* Uses the `rich` library for pretty console output. + +## Requirements + +```bash +pip install -r requirements.txt +``` + +## Run + +```bash +python agent_with_memory.py +``` + +The agent will prompt you for confirmation before each tool call. Type `exit` to quit. \ No newline at end of file