docs: document the OpenUI parallel dashboard with Deep Agents#4579
Open
Visharad Kashyap (vishxrad) wants to merge 2 commits into
Open
docs: document the OpenUI parallel dashboard with Deep Agents#4579Visharad Kashyap (vishxrad) wants to merge 2 commits into
Visharad Kashyap (vishxrad) wants to merge 2 commits into
Conversation
Add a "Build a parallel dashboard with Deep Agents" section to the OpenUI integration page. It shows how a Deep Agents coordinator delegates to parallel panel agents that each stream their own openui-lang program, the langgraph.json registration, and the stream.subagents / useMessages frontend wiring that renders one isolated OpenUI Renderer per panel. Also list OpenUI in the JavaScript LangGraph integrations provider section.
Contributor
|
Thanks for opening a docs PR, Visharad Kashyap (@vishxrad)! When it's ready for review, please add the relevant reviewers:
|
Replace the /api/langgraph proxy route fallback with the LangGraph server URL so the basic example matches the parallel dashboard section and uses the LangGraph server as the backend directly.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds LangGraph and Deep Agents coverage to the OpenUI frontend integration docs, mirroring how the CopilotKit page documents its backend.
What changed
src/oss/langchain/frontend/integrations/openui.mdx): a new "Build a parallel dashboard with Deep Agents" section that documents the multi-panel pattern from the streaming-cookbook OpenUI example:createDeepAgentcoordinator that delegates to specialist panel agents (Stripe, PostHog, GitHub, Calendar) by emitting alltask()calls in a single message so the panels stream concurrently.langgraph.jsongraph registration.stream.subagents, scopeduseMessages(stream, snapshot)projections, and an isolatedRendererper panel.src/oss/javascript/integrations/providers/all_providers.mdx): added an OpenUI card to the LangGraph integrations section.Why
The OpenUI page previously covered only the single-agent frontend flow. This adds the LangGraph/Deep Agents backend story and the parallel multi-panel streaming pattern, so readers can build a generative dashboard end to end.
Notes for review
make lint_prosepasses clean on the changed page.