From 44af8d525751f319558b066f3bff9f1aa8546dc7 Mon Sep 17 00:00:00 2001 From: Tat Dat Duong Date: Tue, 11 Mar 2025 19:24:11 +0100 Subject: [PATCH] Add a disclaimer --- docs/docs/cloud/how-tos/generative_ui_react.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/docs/cloud/how-tos/generative_ui_react.md b/docs/docs/cloud/how-tos/generative_ui_react.md index 603d8b5e6..c053b5e3d 100644 --- a/docs/docs/cloud/how-tos/generative_ui_react.md +++ b/docs/docs/cloud/how-tos/generative_ui_react.md @@ -6,9 +6,12 @@ - [LangGraph Server](../../concepts/langgraph_server.md) - [`useStream()` React Hook](./use_stream_react.md) -Generative user interfaces (Generative UI) is a powerful pattern that allows AI agents to go beyond text and generate rich user interfaces. This enables creating more interactive and context-aware applications where the UI adapts based on the conversation flow and AI responses. +Generative user interfaces (Generative UI) allows agents to go beyond text and generate rich user interfaces. This enables creating more interactive and context-aware applications where the UI adapts based on the conversation flow and AI responses. -LangGraph Platform supports colocating your UI React components with your graph code. This allows you to focus on building specific UI components for your graph while easily plugging into existing chat interfaces such as [Agent Chat](https://agentchat.vercel.app) and loading the code only when actually needed. +LangGraph Platform supports colocating your React components with your graph code. This allows you to focus on building specific UI components for your graph while easily plugging into existing chat interfaces such as [Agent Chat](https://agentchat.vercel.app) and loading the code only when actually needed. + +!!! warning "LangGraph.js only" + Currently only LangGraph.js supports Generative UI. Support for Python is coming soon. ## Quickstart