From 656babab96d887ab56d659d9b67dcf26ac7d335c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=A0=D0=BE=D0=BC?= =?UTF-8?q?=D0=B0=D0=BD=D0=BE=D0=B2?= Date: Tue, 2 Jun 2026 04:40:51 +0000 Subject: [PATCH] Update README.md --- README.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) 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