19 lines
376 B
Markdown
19 lines
376 B
Markdown
# Project
|
|
|
|
This project requires the `langgraph` package. Install dependencies with:
|
|
|
|
```bash
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
To test the import, you can run a simple Python script:
|
|
|
|
```python
|
|
from langgraph.graph import Graph
|
|
|
|
# Example usage
|
|
g = Graph()
|
|
print("LangGraph imported successfully:", g)
|
|
```
|
|
|
|
Make sure you have a compatible Python environment (Python 3.8+). |