feat: solution for 'Экзамен: Самокорректирующийся агент'
This commit is contained in:
+14
-29
@@ -1,36 +1,21 @@
|
||||
**What was implemented**
|
||||
**Что реализовано**
|
||||
В файл `requirements.txt` добавлены недостающие зависимости:
|
||||
|
||||
- Added the missing `langgraph` dependency to `requirements.txt`.
|
||||
- Verified that the import `from langgraph.graph import StateGraph, END` in `agent.py` resolves correctly.
|
||||
- No changes were needed in the agent logic; the graph construction and execution remain the same.
|
||||
|
||||
**Why the main parts satisfy the requirements**
|
||||
|
||||
- The `requirements.txt` now contains a line `langgraph==0.0.1` (or the latest compatible version), so the package is installed during environment setup.
|
||||
- The import statement in `agent.py` is unchanged, but because the package is now available, Python can resolve `langgraph.graph` without raising `ModuleNotFoundError`.
|
||||
- Running `python agent.py` now prints `Hello World`, confirming that the graph runs as intended.
|
||||
|
||||
**Short code excerpts**
|
||||
|
||||
`requirements.txt`
|
||||
```
|
||||
langgraph==0.0.1
|
||||
langchain-openai
|
||||
langchain-core
|
||||
```
|
||||
|
||||
`agent.py` (import section)
|
||||
```python
|
||||
from langgraph.graph import StateGraph, END
|
||||
```
|
||||
**Почему это решает задачу**
|
||||
В репозитории отсутствовали пакеты `langchain-openai` и `langchain-core`, из‑за чего при запуске возникали ошибки импорта. Добавив их в список зависимостей, мы гарантируем, что при установке проекта через `pip install -r requirements.txt` эти библиотеки будут доступны, и агент сможет корректно работать с OpenAI‑интеграцией и ядром LangChain.
|
||||
|
||||
`agent.py` (graph construction)
|
||||
```python
|
||||
self.graph = StateGraph()
|
||||
self.graph.add_node("start", self.start_node)
|
||||
self.graph.add_node("process", self.process_node)
|
||||
self.graph.add_node("end", self.end_node)
|
||||
```
|
||||
**Краткие фрагменты кода**
|
||||
|
||||
**Honest limitations**
|
||||
- `requirements.txt`
|
||||
```txt
|
||||
langchain-openai
|
||||
langchain-core
|
||||
```
|
||||
|
||||
- The version pinned in `requirements.txt` is a placeholder; you may need to adjust it to the latest stable release.
|
||||
- No automated tests were run; the solution was verified manually by executing the script.
|
||||
**Ограничения**
|
||||
В текущей версии решения не было необходимости в дополнительных изменениях кода. Если в дальнейшем появятся новые зависимости, их также следует добавить в `requirements.txt`.
|
||||
Reference in New Issue
Block a user