Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/data/nav/aitransport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ export default {
name: 'LangGraph token streaming - message per token',
link: '/docs/guides/ai-transport/lang-graph-message-per-token',
},
{
name: 'LangGraph token streaming - message per response',
link: '/docs/guides/ai-transport/lang-graph-message-per-response',
},
],
},
],
Expand Down
8 changes: 7 additions & 1 deletion src/pages/docs/ai-transport/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,16 @@ Use the following guides to get started with the Vercel AI SDK:

### LangGraph

Use the following guide to get started with LangGraph:
Use the following guides to get started with LangGraph:

<Tiles>
{[
{
title: 'Message-per-response',
description: 'Stream LangGraph responses using message appends',
image: 'icon-tech-javascript',
link: '/docs/guides/ai-transport/lang-graph-message-per-response',
},
{
title: 'Message-per-token',
description: 'Stream LangGraph responses using individual token messages',
Expand Down
Loading