-
Notifications
You must be signed in to change notification settings - Fork 404
Open
Description
Reopening #1722 as still not fixed (on version 1.1.4)as seen by many reports in that thread.
Checked other resources
- I added a very descriptive title to this issue.
- I searched the LangGraph.js documentation with the integrated search.
- I used the GitHub search to find a similar question and didn't find it.
- I am sure that this is a bug in LangGraph.js rather than my code.
- The bug is not resolved by updating to the latest stable version of LangGraph (or the specific integration package).
Example Code
import {
END,
MessagesValue,
START,
StateGraph,
StateSchema,
} from "@langchain/langgraph"
const State = new StateSchema({
messages: MessagesValue,
})
async function respond(
state: typeof State.State,
): Promise<Partial<typeof State.State>> {
const response = await llm.invoke(state.messages)
return { messages: [response] }
}
const graph = new StateGraph(State)
.addNode("respond", respond)
.addEdge(START, "respond")
.addEdge("respond", END)
.compile()
export { graph }
Error Message and Stack Trace (if applicable)
No response
Description
Reopening #1722 as still not fixed (on version 1.1.4)as seen by many reports in that thread.
System Info
"@langchain/core": "^1.1.24",
"@langchain/langgraph": "^1.1.4",
"@langchain/openai": "^1.2.7",
"@langchain/langgraph-cli": "^1.1.13",
"@langchain/langgraph-checkpoint": "^1.0.0",
"zod": "^4.3.6",
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels