Skip to content

Langgraph Studio (still) doesn't show Chat tab #1965

@jakubriedl

Description

@jakubriedl

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",

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions