A minimal example project containing a simple Langgraph agent implementation and a Next.js web frontend.
This repository demonstrates a simple agent architecture (in the agent/ folder) alongside a web UI (in the web/ folder). It includes tests for the Python agent and basic components for the frontend.
- Python 3.11+ (for the agent)
- pip or uv for Python package management
- Node.js 18+ (for the web frontend)
- pnpm or npm for JavaScript package management
Python (agent):
cd agent
uv sync # or `pip install -r requirements.txt` if you don't use uvWeb frontend:
cd web
pnpm install # or `npm install` if you don't use pnpmRun the agent (from the agent folder):
cd agent
uv run lanngraph dev # or `python -m lanngraph dev` if you don't use uvRun the frontend (from the web folder):
cd web
pnpm dev # or `npm run dev`agent/— Python agent source and configurationweb/— Next.js frontend and components
Contributions welcome. Open an issue or create a pull request with a clear description of changes.
This project is provided as-is. Add a license file if you wish to clarify usage terms.
