Files
ekzamen-samokorrektiruyusch…/SOLUTION.md
T

16 lines
617 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
**What was implemented**
I added the `langgraph` package to the projects `requirements.txt` so that the import
`from langgraph.graph import ...` works without raising a `ModuleNotFoundError`.
**Why this satisfies the requirement**
The assignment explicitly asked to include `langgraph` in the dependencies. By listing it in `requirements.txt`, the package manager will install it during the environment setup, making the import statement valid.
**Key code excerpt**
```txt
# requirements.txt
langgraph
```
**Limitations**
None the change is minimal and directly addresses the reviewers feedback.