-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: redirect /tutorial to /tutorial/introduction (#824)
- Loading branch information
Showing
3 changed files
with
35 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
28 changes: 28 additions & 0 deletions
28
apps/docs/content/docs/runtimes/langgraph/tutorial/introduction.mdx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: "Introduction" | ||
--- | ||
|
||
In this tutorial, we will build a stockbroker assistant using LangChain.js, LangGraph.js and assistant-ui. | ||
|
||
We will go through the necessary steps to integrate assistant-ui with a LangGraph Cloud endpoint. | ||
Code snippets focus on the setup of the frontend, but we will highlight relevant sections of the backend code as well. | ||
|
||
This agent leverages the following features: | ||
|
||
- π Streaming of messages from LangGraph state to assistant-ui | ||
- π Rich text rendering using Markdown | ||
- π οΈ Generative UI: Mapping tool calls to tool UIs | ||
- π Approval UI: Confirming tool calls before execution (human-in-the-loop) | ||
|
||
## Prerequisites | ||
|
||
- Node.js 18.x or higher | ||
|
||
## Final Result | ||
|
||
- Demo: https://assistant-ui-stockbroker.vercel.app/ | ||
- Source Code: https://github.com/Yonom/assistant-ui-stockbroker | ||
|
||
## Get Started | ||
|
||
Begin Part 1 of the tutorial by [setting up the frontend](/docs/runtimes/langgraph/tutorial/part-1). |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"title": "Tutorial: Stockbroker", | ||
"pages": ["index", "..."] | ||
"pages": ["..."] | ||
} |