Files
ekzamen-samokorrektiruyusch…/SOLUTION.md
T

28 lines
694 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**
Added the `langgraph` package to the projects `requirements.txt` so that imports from `langgraph.graph` resolve correctly.
**Why it satisfies the requirement**
The assignment explicitly asks for the `langgraph` dependency to be listed in the requirements file. By including the line
```txt
langgraph
```
in `requirements.txt`, the package will be installed during the environment setup, enabling any module that does
```python
from langgraph.graph import ...
```
to import without errors.
**Code excerpts**
- `requirements.txt`
```txt
langgraph
```
**Limitations**
None the change is minimal and directly addresses the reviewers feedback.