Files
ekzamen-samokorrektiruyusch…/README.md
T

27 lines
783 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.
# SelfCorrecting Agent Project
This repository contains a minimal setup for a selfcorrecting agent that relies on the `langgraph` library.
The `requirements.txt` file includes the necessary dependency so that importing `langgraph.graph` works without errors.
## Installation
```bash
# Create a virtual environment (optional but recommended)
python -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
# Install dependencies
pip install -r requirements.txt
```
## Usage
After installing the dependencies, you can import `langgraph.graph` in your Python code:
```python
from langgraph.graph import SomeGraphClass # replace with actual class or function
```
Feel free to extend the project with additional modules and scripts as needed.
---