Loading repository data…
Loading repository data…
sifanmomin1 / repository
--- ## 📖 About **LangGraph** is an open-source educational toolkit designed to make advanced Language Model (LLM) workflows accessible and interactive. Built around Jupyter notebooks, LangGraph lets you explore, build, and experiment with modular AI processes—such as agentic reasoning, prompt chaining, and sentiment analysis—without complex setu
Unlock the power of Language Models through interactive, modular workflows—right in your browser.
LangGraph is an open-source Python library built on top of LangChain that enables the creation of complex, stateful, and cyclic workflows for AI agents—especially those powered by Large Language Models (LLMs). It adopts a graph-based architecture to model agent behavior, offering more flexible, dynamic, and reusable execution flows than traditional linear pipelines.
Explore patterns like:
All within one interactive playground.
LangGraph supports the following modular workflow patterns:
Tasks run in order — perfect for multi-step reasoning.
Execute multiple prompts or analyses concurrently.
Branch your logic based on model output or custom conditions.
Loop until the LLM gives you what you want.
| Notebook | Description |
|---|---|
bmi.ipynb | Calculate BMI using code logic and LLM reasoning |
customer_sentiment.ipynb | Analyze customer feedback sentiment using LLMs |
llm_workflow.ipynb | Build modular agent workflows and evaluate their output |
parallel.ipynb | Run concurrent prompt chains for faster results |
prompt_chaining.ipynb | Train LLMs for multi-step reasoning and chaining |
quadratic.ipynb | Solve quadratic equations using LLMs as solvers |
uspc.ipynb | Explore a user-defined structured process chain |
x_post.ipynb | Advanced post-processing and formatting with agents |
✅ Modular Design – Swap, link, or loop your agent blocks with ease
✅ Jupyter First – No special UI, just your familiar playground
✅ Educational – Great for tinkerers, students, and LLM engineers
✅ Practical – Real use cases for agent-based LLM development
git clone https://github.com/sifanmomin1/langgraph.git
cd langgraph
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt
jupyter notebook