Skip to content

Commit c6e9aca

Browse files
committed
chore: revert sorting of features
Revert the sorting of features, as per review feedback.
1 parent 02960d8 commit c6e9aca

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@ export const featureConfig: FeatureConfig[] = [
2323
description: "Chat with your Copilot and call frontend tools",
2424
tags: ["Chat", "Tools", "Streaming"],
2525
}),
26-
createFeatureConfig({
27-
id: "agentic_generative_ui",
28-
name: "Agentic Generative UI",
29-
description: "Assign a long running task to your Copilot and see how it performs!",
30-
tags: ["Generative ui (agent)", "Long running task"],
31-
}),
3226
createFeatureConfig({
3327
id: "human_in_the_loop",
3428
name: "Human in the loop",
3529
description: "Plan a task together and direct the Copilot to take the right steps",
3630
tags: ["HITL", "Interactivity"],
3731
}),
3832
createFeatureConfig({
39-
id: "predictive_state_updates",
40-
name: "Predictive State Updates",
41-
description: "Use collaboration to edit a document in real time with your Copilot",
42-
tags: ["State", "Streaming", "Tools"],
33+
id: "agentic_generative_ui",
34+
name: "Agentic Generative UI",
35+
description: "Assign a long running task to your Copilot and see how it performs!",
36+
tags: ["Generative ui (agent)", "Long running task"],
37+
}),
38+
createFeatureConfig({
39+
id: "tool_based_generative_ui",
40+
name: "Tool Based Generative UI",
41+
description: "Haiku generator that uses tool based generative UI.",
42+
tags: ["Generative ui (action)", "Tools"],
4343
}),
4444
createFeatureConfig({
4545
id: "shared_state",
@@ -48,10 +48,10 @@ export const featureConfig: FeatureConfig[] = [
4848
tags: ["Agent State", "Collaborating"],
4949
}),
5050
createFeatureConfig({
51-
id: "tool_based_generative_ui",
52-
name: "Tool Based Generative UI",
53-
description: "Haiku generator that uses tool based generative UI.",
54-
tags: ["Generative ui (action)", "Tools"],
51+
id: "predictive_state_updates",
52+
name: "Predictive State Updates",
53+
description: "Use collaboration to edit a document in real time with your Copilot",
54+
tags: ["State", "Streaming", "Tools"],
5555
}),
5656
];
5757

0 commit comments

Comments
 (0)