feat: solution for 'Экзамен: Самокорректирующийся агент'

This commit is contained in:
2026-07-01 11:04:01 +03:00
parent 3f1fe15e38
commit 045dba9aef
3 changed files with 27 additions and 71 deletions
+18
View File
@@ -0,0 +1,18 @@
**What was implemented**
I added the missing dependencies to `requirements.txt` so the project can import the required modules.
**Why it satisfies the requirement**
The assignment explicitly asks for the packages `langgraph` and `langchain-openai` to be listed in `requirements.txt`. By including them, the environment will install these libraries and the code that imports them will run without `ModuleNotFoundError`.
**Key code excerpts**
```txt
# requirements.txt
langgraph
langchain-openai
```
This file now contains the two packages, matching the reviewers feedback.
**Limitations**
None the change is straightforward and fully addresses the requested update.