Minimal example showing an authentication workflow built with LangGraph, plus a small QA workflow.
Quick start
- Clone the repo.
- Create a virtualenv and install dependencies:
python -m venv .venv
source .venv/bin/activate # or `.venv\Scripts\activate` on Windows
pip install -r requirements.txt
# or the single-line install suggested:
pip install -q langgraph==0.2.57 langchain-ibm==0.3.10- Copy
.env.exampleto.envand add your API keys (if you plan to use external LLMs):
cp .env.example .env
# then edit .env and add your keys- Run the workflows with the runner:
python runner.pyNotes
- The repository excludes
.envand other local files via.gitignore. - Add your keys locally via
.envor environment variables.