Files
ekzamen-samokorrektiruyusch…/README.md
T

29 lines
559 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.
# Self-Correcting Agent Example
This repository demonstrates a minimal selfcorrecting agent built with **LangGraph**.
The agent concatenates a greeting message and prints it at the end.
## Requirements
- Python 3.10+
- `langgraph` (added to `requirements.txt`)
Install dependencies:
```bash
pip install -r requirements.txt
```
## Running the Agent
```bash
python agent.py
```
You should see the output:
```
Hello World
```
The example ensures that imports from `langgraph.graph` work correctly and that the agent can be executed without errors.