LangGraph V1 Alpha! 🚀 #352

Closed
opened 2026-02-15 18:16:08 -05:00 by yindo · 3 comments
Owner

Originally created by @christian-bromann on GitHub (Sep 2, 2025).

Privileged issue

  • I am a LangGraph.js maintainer, or was asked directly by a LangGraph.js maintainer to create an issue here.

Issue Content

Hey LangChain community! LangGraph v1 alpha is out!

We've released v1 alpha versions for langgraph, langchain, @langchain/core, and some key integrations packages like @langchain/openai and @langchain/anthropic.

We're also releasing a new docs site with consolidated open source docs: https://docs.langchain.com/oss/javascript/langgraph/overview.

We've written up a blog post highlighting improvements and changes in these releases: https://blog.langchain.com/langchain-langchain-1-0-alpha-releases/.

LangGraph v1 has no breaking changes compared to our latest v0.6.6, other than the deprecation of createReactAgent, which has moved to langchain and can be used via

import { createAgent } from `langchain`

We'd love your feedback! Please try it out with:

npm install @langchain/langgraph@next

We're working on publishing the stable release for 1.0 in late October.

Originally created by @christian-bromann on GitHub (Sep 2, 2025). ### Privileged issue - [x] I am a LangGraph.js maintainer, or was asked directly by a LangGraph.js maintainer to create an issue here. ### Issue Content Hey LangChain community! LangGraph v1 alpha is out! We've released v1 alpha versions for `langgraph`, `langchain`, `@langchain/core`, and some key integrations packages like `@langchain/openai` and `@langchain/anthropic`. We're also releasing a new docs site with consolidated open source docs: https://docs.langchain.com/oss/javascript/langgraph/overview. We've written up a blog post highlighting improvements and changes in these releases: https://blog.langchain.com/langchain-langchain-1-0-alpha-releases/. LangGraph v1 has no breaking changes compared to our latest v0.6.6, other than the deprecation of `createReactAgent`, which has moved to `langchain` and can be used via ```py import { createAgent } from `langchain` ``` We'd love your feedback! Please try it out with: ```shell npm install @langchain/langgraph@next ``` We're working on publishing the stable release for 1.0 in late October.
yindo closed this issue 2026-02-15 18:16:08 -05:00
Author
Owner

@yanedie commented on GitHub (Sep 6, 2025):

I hope the code in the v1 alpha documentation can be run. I am learning the langgraph.js through the docs and found out that I can't achieve the same result from the official demo. What I did was copy the code and run it. That's it.

https://langchain-ai.github.io/langgraphjs/how-tos/review-tool-calls/
Chapter: Example of approving tool

Expect:

================================ human Message (1) =================================
what's the weather in SF?
================================ ai Message (1) =================================
[
  {
    type: 'text',
    text: 'Let me check the weather in San Francisco for you.'
  },
  {
    type: 'tool_use',
    id: 'toolu_01PTn9oqTP6EdFabfhfvELuy',
    name: 'weather_search',
    input: { city: 'San Francisco' }
  }
]

Real:

================================ human Message (1) =================================
what's the weather in SF?
================================ ai Message (1) =================================

TypeError: Cannot read properties of undefined (reading 'length')
    at file:///D:/Coding/langchain/module-3/simple-usage.ts:181:51
    at processTicksAndRejections (node:internal/process/task_queues:105:5)

And the tutorial (Foundation: Introduction to LangGraph) in the langchain academy is outdated. The deprecated method (static breakpoint) is present in the video.

@yanedie commented on GitHub (Sep 6, 2025): I hope the code in the v1 alpha documentation can be run. I am learning the langgraph.js through the docs and found out that I can't achieve the same result from the official demo. What I did was copy the code and run it. That's it. https://langchain-ai.github.io/langgraphjs/how-tos/review-tool-calls/ Chapter: Example of approving tool Expect: ``` ================================ human Message (1) ================================= what's the weather in SF? ================================ ai Message (1) ================================= [ { type: 'text', text: 'Let me check the weather in San Francisco for you.' }, { type: 'tool_use', id: 'toolu_01PTn9oqTP6EdFabfhfvELuy', name: 'weather_search', input: { city: 'San Francisco' } } ] ``` Real: ``` ================================ human Message (1) ================================= what's the weather in SF? ================================ ai Message (1) ================================= TypeError: Cannot read properties of undefined (reading 'length') at file:///D:/Coding/langchain/module-3/simple-usage.ts:181:51 at processTicksAndRejections (node:internal/process/task_queues:105:5) ``` And the tutorial (Foundation: Introduction to LangGraph) in the langchain academy is outdated. The deprecated method (static breakpoint) is present in the video.
Author
Owner

@nightire commented on GitHub (Sep 6, 2025):

@yanedie Have you noticed they provide a new doc site? https://docs.langchain.com/oss/javascript/langgraph/overview

@nightire commented on GitHub (Sep 6, 2025): @yanedie Have you noticed they provide a new doc site? https://docs.langchain.com/oss/javascript/langgraph/overview
Author
Owner

@edgehero commented on GitHub (Oct 14, 2025):

Hi, im wondering why the ALPHA version is not allowed to be hosted on Langchain ( smith) what is up with that?

@edgehero commented on GitHub (Oct 14, 2025): Hi, im wondering why the ALPHA version is not allowed to be hosted on Langchain ( smith) what is up with that?
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs#352