Skip to content

Commit bd323a9

Browse files
committed
Make menu bar sorted for easier viewability
1 parent e3278c2 commit bd323a9

File tree

1 file changed

+41
-39
lines changed
  • typescript-sdk/apps/dojo/src

1 file changed

+41
-39
lines changed

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

Lines changed: 41 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,6 @@ export const menuIntegrations: MenuIntegrationConfig[] = [
66
name: "Middleware Starter",
77
features: ["agentic_chat"],
88
},
9-
{
10-
id: "pydantic-ai",
11-
name: "Pydantic AI",
12-
features: [
13-
"agentic_chat",
14-
"human_in_the_loop",
15-
"agentic_generative_ui",
16-
"tool_based_generative_ui",
17-
"shared_state",
18-
"predictive_state_updates",
19-
],
20-
},
219
{
2210
id: "server-starter",
2311
name: "Server Starter",
@@ -29,26 +17,29 @@ export const menuIntegrations: MenuIntegrationConfig[] = [
2917
features: [
3018
"agentic_chat",
3119
"human_in_the_loop",
20+
"agentic_chat_reasoning",
3221
"agentic_generative_ui",
33-
"tool_based_generative_ui",
34-
"shared_state",
3522
"predictive_state_updates",
23+
"shared_state",
24+
"tool_based_generative_ui",
3625
],
3726
},
3827
{
39-
id: "mastra",
40-
name: "Mastra",
28+
id: "agno",
29+
name: "Agno",
4130
features: ["agentic_chat", "tool_based_generative_ui"],
4231
},
4332
{
44-
id: "mastra-agent-local",
45-
name: "Mastra Agent (Local)",
46-
features: ["agentic_chat", "shared_state", "tool_based_generative_ui"],
47-
},
48-
{
49-
id: "vercel-ai-sdk",
50-
name: "Vercel AI SDK",
51-
features: ["agentic_chat"],
33+
id: "crewai",
34+
name: "CrewAI",
35+
features: [
36+
"agentic_chat",
37+
"human_in_the_loop",
38+
"agentic_generative_ui",
39+
"predictive_state_updates",
40+
"shared_state",
41+
"tool_based_generative_ui",
42+
],
5243
},
5344
{
5445
id: "langgraph",
@@ -57,9 +48,9 @@ export const menuIntegrations: MenuIntegrationConfig[] = [
5748
"agentic_chat",
5849
"human_in_the_loop",
5950
"agentic_generative_ui",
60-
"tool_based_generative_ui",
6151
"predictive_state_updates",
6252
"shared_state",
53+
"tool_based_generative_ui",
6354
],
6455
},
6556
{
@@ -68,46 +59,57 @@ export const menuIntegrations: MenuIntegrationConfig[] = [
6859
features: [
6960
"agentic_chat",
7061
"human_in_the_loop",
62+
"agentic_chat_reasoning",
7163
"agentic_generative_ui",
72-
"tool_based_generative_ui",
7364
"predictive_state_updates",
7465
"shared_state",
75-
"agentic_chat_reasoning",
66+
"tool_based_generative_ui",
7667
],
7768
},
78-
7969
{
8070
id: "langgraph-typescript",
8171
name: "LangGraph (Typescript)",
8272
features: [
8373
"agentic_chat",
8474
"human_in_the_loop",
8575
"agentic_generative_ui",
86-
"tool_based_generative_ui",
8776
"predictive_state_updates",
88-
"shared_state"
77+
"shared_state",
78+
"tool_based_generative_ui"
8979
],
9080
},
91-
{
92-
id: "agno",
93-
name: "Agno",
94-
features: ["agentic_chat", "tool_based_generative_ui"],
95-
},
9681
{
9782
id: "llama-index",
9883
name: "LlamaIndex",
9984
features: ["agentic_chat", "human_in_the_loop", "agentic_generative_ui", "shared_state"],
85+
10086
},
10187
{
102-
id: "crewai",
103-
name: "CrewAI",
88+
id: "mastra",
89+
name: "Mastra",
90+
features: ["agentic_chat", "tool_based_generative_ui"],
91+
},
92+
{
93+
id: "mastra-agent-local",
94+
name: "Mastra Agent (Local)",
95+
features: ["agentic_chat", "shared_state", "tool_based_generative_ui"],
96+
},
97+
{
98+
id: "pydantic-ai",
99+
name: "Pydantic AI",
104100
features: [
105101
"agentic_chat",
106102
"human_in_the_loop",
107-
"tool_based_generative_ui",
108103
"agentic_generative_ui",
109-
"shared_state",
110104
"predictive_state_updates",
105+
"shared_state",
106+
"tool_based_generative_ui",
111107
],
112108
},
109+
{
110+
id: "vercel-ai-sdk",
111+
name: "Vercel AI SDK",
112+
features: ["agentic_chat"],
113+
},
113114
];
115+

0 commit comments

Comments
 (0)