🌐
Coursera
coursera.org › browse › computer science › software development
Agentic AI with LangChain and LangGraph | Coursera
April 4, 2026 - Build agentic AI systems using LangChain and LangGraph to support memory, iteration, and conditional logic
🌐
LangChain
langchain.com › langgraph
LangGraph: Agent Orchestration Framework for Reliable AI Agents
“LangChain is streets ahead with what they've put forward with LangGraph. LangGraph sets the foundation for how we can build and scale AI workloads — from conversational agents, ...
Discussions

I wrote an AI Agent with LangGraph that works better than I expected. Here are 10 learnings.
If you wanna do stuff like Manus you already need to have in mind a multi agent chain of thought orchestrator flow though. More on reddit.com
🌐 r/LangChain
37
168
July 25, 2025
Langchain Agents or Langgraph Agents
If you are building something new it's recommended to use Langgraph. As a library it's actually very lightweight and includes a pre-built agent comparable to AgentExecutor that you can instantiate in one line: https://langchain-ai.github.io/langgraph/how-tos/create-react-agent/ When/if you outgrow the pre-built agent, it is easier to extend with langgraph than with langchain's AgentExecutor. More on reddit.com
🌐 r/LangChain
9
21
July 30, 2024
I thought I was building an agent with LangGraph. Turns out I was building a very fancy if-else statement
tbh most LangGraph "agents" I've seen in production are exactly this, a state machine with an LLM gatekeeper. moving to create_react_agent with proper tool docstrings is the right move, the LLM should be making the routing decisions not just classifying intent. More on reddit.com
🌐 r/LangChain
12
18
April 1, 2026
[deleted by user]
We standardized on Smolagents. Lightweight package. HuggingFace backing Literally does most-things without the bloat. Would recommend. Currently have 100 agents in production built on it. More on reddit.com
🌐 r/LangChain
71
175
February 15, 2025
People also ask

How is agentic AI development different from traditional coding or prompt engineering?
Traditional development builds static applications, and prompt engineering fine-tunes LLM responses. But agentic AI development focuses on designing autonomous, stateful systems that can evaluate their outputs, manage memory, and interact intelligently over time. You'll learn how to architect systems that think, adapt, and collaborate, using tools such as LangGraph to build workflows with cycles, conditionals, and inter-agent communication.
🌐
coursera.org
coursera.org › browse › computer science › software development
Agentic AI with LangChain and LangGraph | Coursera
Do I need machine learning experience to take this course?
No prior machine learning (ML) experience is required. If you're comfortable with Python, you're ready to go. This course focuses on building practical agentic AI systems that reflect, improve, and act. No complex ML understanding is required.
🌐
coursera.org
coursera.org › browse › computer science › software development
Agentic AI with LangChain and LangGraph | Coursera
What will I get if I subscribe to this Certificate?
When you enroll in the course, you get access to all of the courses in the Certificate, and you earn a certificate when you complete the work. Your electronic Certificate will be added to your Accomplishments page - from there, you can print your Certificate or add it to your LinkedIn profile.
🌐
coursera.org
coursera.org › browse › computer science › software development
Agentic AI with LangChain and LangGraph | Coursera
🌐
Codecademy
codecademy.com › article › agentic-ai-with-langchain-langgraph
How to Build Agentic AI with LangChain and LangGraph | Codecademy
Learn to build AI agents with LangChain and LangGraph. Create autonomous workflows using memory, tools, and LLM orchestration.
🌐
Udacity
udacity.com › all programs › school of artificial intelligence
Agentic AI Engineer with LangChain and LangGraph
March 31, 2026 - Agentic AI Engineer with LangChain and LangGraph is a program that teaches Python developers how to turn large‑language‑model applications into fully autonomous agents. You begin with LangChain fundamentals—prompt templates, chains, memory, ...
Rating: 4.5 ​ - ​ 11 votes
🌐
Pluralsight
pluralsight.com › what makes pluralsight different | pluralsight › ai & data
LangChain LangGraph Agentic AI Guide | Pluralsight
LangChain and LangGraph are best for combining memory, tool integration, and modular workflows. LangGraph's visualization ensures scalability and debugging. Haystack is best for document retrival and Q&A. It has limited support for tool integration.
🌐
GitHub
github.com › langchain-ai › langgraph
GitHub - langchain-ai/langgraph: Build resilient language agents as graphs. Available in TypeScript! · GitHub
4 days ago - Build resilient language agents as graphs. Available in TypeScript! - langchain-ai/langgraph
Starred by 31.2K users
Forked by 5.3K users
Languages   Python
🌐
Udemy
udemy.com › development
Complete Agentic AI Bootcamp With LangGraph and Langchain
March 9, 2026 - Core concepts behind Agentic AI and how intelligent agents operate. Hands-on mastery of LangGraph and LangChain for building agent systems.
Rating: 4.5 ​ - ​ 5.23K votes
Find elsewhere
🌐
GitHub
github.com › langchain-ai › deepagents
GitHub - langchain-ai/deepagents: Python & TypeScript agent harness built with LangChain and LangGraph. Equipped with a planning tool, a filesystem backend, and the ability to spawn subagents - well-equipped to handle complex agentic tasks. · GitHub
2 weeks ago - Python & TypeScript agent harness built with LangChain and LangGraph. Equipped with a planning tool, a filesystem backend, and the ability to spawn subagents - well-equipped to handle complex agentic tasks. - langchain-ai/deepagents
Starred by 22.3K users
Forked by 3.1K users
Languages   Python 98.2% | TypeScript 1.1% | Makefile 0.4% | Shell 0.2% | CSS 0.1% | HTML 0.0%
🌐
Medium
medium.com › mitb-for-all › beyond-vibe-coding-of-agentic-ai-understanding-langchain-langgraph-and-llamaindex-5d470fb51e29
Beyond vibe-coding of Agentic AI — understanding LangChain, LangGraph and LlamaIndex | by James Koh, PhD | MITB For All | Medium
September 17, 2025 - In Section 2.5.2, we saw that LangChain allow us to create an agent using just a few lines of code, by importing initialize_agent from the langchain.agents library. We can do the same here using create_react_agent, where ‘react’ stands for REasoning and ACTing, first presented in a widely-cited ICLR 2023 work. from langgraph.prebuilt import create_react_agent agent = create_react_agent( llm, [tavily_search, internal_lookup], prompt = "You are a precise assistant that takes initiative.
🌐
Langchain
docs.langchain.com › oss › python › langgraph › agentic-rag
Build a custom RAG agent with LangGraph - Docs by LangChain
Build an agentic RAG system that can decide when to use the retriever tool. ... The LangGraph Graph API, including state, nodes, edges, and conditional edges.
🌐
Reddit
reddit.com › r/langchain › i wrote an ai agent with langgraph that works better than i expected. here are 10 learnings.
r/LangChain on Reddit: I wrote an AI Agent with LangGraph that works better than I expected. Here are 10 learnings.
July 25, 2025 -

I've been writing some AI Agents lately with LangGraph and they work much better than I expected. Here are the 10 learnings for writing AI agents that work:

  1. Tools first. Design, write and test the tools before connecting to LLMs. Tools are the most deterministic part of your code. Make sure they work 100% before writing actual agents.

  2. Start with general, low-level tools. For example, bash is a powerful tool that can cover most needs. You don't need to start with a full suite of 100 tools.

  3. Start with a single agent. Once you have all the basic tools, test them with a single react agent. It's extremely easy to write a react agent once you have the tools. LangGraph a built-in react agent. You just need to plugin your tools.

  4. Start with the best models. There will be a lot of problems with your system, so you don't want the model's ability to be one of them. Start with Claude Sonnet or Gemini Pro. You can downgrade later for cost purposes.

  5. Trace and log your agent. Writing agents is like doing animal experiments. There will be many unexpected behaviors. You need to monitor it as carefully as possible. LangGraph has built in support for LangSmith, I really love it.

  6. Identify the bottlenecks. There's a chance that a single agent with general tools already works. But if not, you should read your logs and identify the bottleneck. It could be: context length is too long, tools are not specialized enough, the model doesn't know how to do something, etc.

  7. Iterate based on the bottleneck. There are many ways to improve: switch to multi-agents, write better prompts, write more specialized tools, etc. Choose them based on your bottleneck.

  8. You can combine workflows with agents and it may work better. If your objective is specialized and there's a unidirectional order in that process, a workflow is better, and each workflow node can be an agent. For example, a deep research agent can be a two-node workflow: first a divergent broad search, then a convergent report writing, with each node being an agentic system by itself.

  9. Trick: Utilize the filesystem as a hack. Files are a great way for AI Agents to document, memorize, and communicate. You can save a lot of context length when they simply pass around file URLs instead of full documents.

  10. Another Trick: Ask Claude Code how to write agents. Claude Code is the best agent we have out there. Even though it's not open-sourced, CC knows its prompt, architecture, and tools. You can ask its advice for your system.

🌐
GUVI
guvi.in › blog › artificial intelligence and machine learning › how to build agentic ai with langchain and langgraph in 2026
How to Build Agentic AI with LangChain and LangGraph in 2026
1 month ago - Agentic AI is AI that can reason, ... You build it using LangChain, which provides the building blocks like tools and memory, and LangGraph, which connects those blocks into a stateful workflow using nodes and edges...
🌐
DeepLearning.AI
deeplearning.ai › home › courses › ai agents in langgraph
AI Agents in LangGraph - DeepLearning.AI
September 11, 2025 - Build agentic AI workflows using LangChain's LangGraph and Tavily's agentic search. Learn directly from LangChain and Tavily founders.
🌐
Udacity
udacity.com › all programs › school of artificial intelligence
AI Agents with LangChain and LangGraph | Online Course | Udacity
March 31, 2026 - Learn to build a simple LangChain agent that combines LLMs, memory, and tools for automated, multi-step workflows and natural user interactions. ... Learn to build dynamic, agent-driven AI workflows using LangGraph, leveraging nodes, edges, ...
Rating: 4.6 ​ - ​ 38 votes
🌐
Udemy
udemy.com › development
LangChain- Agentic AI Engineering with LangChain & LangGraph
1 month ago - This course contains the use of artificial intelligence :) 2026- COURSE WAS RE-RECORDED and supports- LangChain Version 1.2+ **Ideal students are software developers / data scientists / AI/ML Engineers** Welcome to the Agentic AI Engineering with LangChain and LangGraph course.
Rating: 4.6 ​ - ​ 49.8K votes
🌐
LangChain
langchain.com › built-with-langgraph
LangGraph AI Agent Framework for Production Applications
Elastic orchestrates their AI agents for threat detection scenarios using LangGraph. Their GenAI features have reduced labor-intensive SecOps tasks. ... AppFolio's copilot, Realm-X, helps property managers make decisions faster.
🌐
AI Tool Directory
tooldirectory.ai › home › ai agents › langgraph
LangGraph: Stateful Agent Orchestration from LangChain
3 days ago - Stateful agent orchestration framework from LangChain for building cyclical, multi-agent workflows. ... LangGraph is Graph-based agent orchestration — supports cycles, branching, persistent state.
🌐
Medium
medium.com › @akankshasinha247 › building-ai-agents-with-langgraph-langchain-fab4f5310bc3
Building AI Agents with LangGraph & LangChain | by Akanksha Sinha | Medium
April 12, 2025 - While LangChain focuses on chaining logic and tools, LangGraph adds graph-based flow control, memory handling, and multi-step planning. Together, they make agentic AI development accessible — no complex infra required.
🌐
LangChain
langchain.com › blog › agentic-engineering-redefining-software-engineering
Agentic Engineering: How Swarms of AI Agents Are Redefining Software Engineering
6 days ago - This blog describes an agentic engineering system designed to transition from task level execution to system-level collaboration. We propose a reference architecture and a pilot evaluation of a multi-agent coordinated framework implemented using LangChain’s suite of tools—including LangSmith and LangGraph.