Skip to content

Commit cc6be89

Browse files
committed
add langgraph-typescript to the menu
1 parent 9153471 commit cc6be89

File tree

2 files changed

+16
-3
lines changed
  • typescript-sdk/apps/dojo/src

2 files changed

+16
-3
lines changed

typescript-sdk/apps/dojo/src/app/[integrationId]/feature/human_in_the_loop/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ const Chat = ({ integrationId }: { integrationId: string }) => {
324324
],
325325
// Langgraph uses it's own hook to handle human-in-the-loop interactions via langgraph interrupts,
326326
// so don't use this action for langgraph integration.
327-
available: ['langgraph', 'langgraph-fastapi'].includes(integrationId) ? 'disabled' : 'enabled',
327+
available: ['langgraph', 'langgraph-fastapi', 'langgraph-typescript'].includes(integrationId) ? 'disabled' : 'enabled',
328328
renderAndWaitForResponse: ({ args, respond, status }) => {
329329
return <StepsFeedback args={args} respond={respond} status={status} />;
330330
},

typescript-sdk/apps/dojo/src/menu.ts

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const menuIntegrations: MenuIntegrationConfig[] = [
5252
},
5353
{
5454
id: "langgraph",
55-
name: "LangGraph",
55+
name: "LangGraph (Python)",
5656
features: [
5757
"agentic_chat",
5858
"human_in_the_loop",
@@ -64,7 +64,7 @@ export const menuIntegrations: MenuIntegrationConfig[] = [
6464
},
6565
{
6666
id: "langgraph-fastapi",
67-
name: "LangGraph FastAPI",
67+
name: "LangGraph (FastAPI)",
6868
features: [
6969
"agentic_chat",
7070
"human_in_the_loop",
@@ -75,6 +75,19 @@ export const menuIntegrations: MenuIntegrationConfig[] = [
7575
"agentic_chat_reasoning",
7676
],
7777
},
78+
79+
{
80+
id: "langgraph-typescript",
81+
name: "LangGraph (Typescript)",
82+
features: [
83+
"agentic_chat",
84+
"human_in_the_loop",
85+
"agentic_generative_ui",
86+
"tool_based_generative_ui",
87+
"predictive_state_updates",
88+
"shared_state"
89+
],
90+
},
7891
{
7992
id: "agno",
8093
name: "Agno",

0 commit comments

Comments
 (0)