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
7 changes: 5 additions & 2 deletions apps/cockpit/src/lib/route-resolution.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,20 @@ describe('buildNavigationTree', () => {
it('groups manifest entries by product and section', () => {
const tree = buildNavigationTree(cockpitManifest);

expect(tree).toHaveLength(4);
expect(tree).toHaveLength(5);
expect(tree[0]).toMatchObject({
product: 'deep-agents',
});
expect(tree[1]).toMatchObject({
product: 'langgraph',
});
expect(tree[2]).toMatchObject({
product: 'render',
product: 'ag-ui',
});
expect(tree[3]).toMatchObject({
product: 'render',
});
expect(tree[4]).toMatchObject({
product: 'chat',
});
});
Expand Down
6 changes: 5 additions & 1 deletion apps/cockpit/src/lib/route-resolution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import { langgraphDurableExecutionPythonModule } from '../../../../cockpit/langg
import { langgraphSubgraphsPythonModule } from '../../../../cockpit/langgraph/subgraphs/python/src/index';
import { langgraphTimeTravelPythonModule } from '../../../../cockpit/langgraph/time-travel/python/src/index';
import { langgraphDeploymentRuntimePythonModule } from '../../../../cockpit/langgraph/deployment-runtime/python/src/index';
import { agUiInterruptsPythonModule } from '../../../../cockpit/ag-ui/interrupts/python/src/index';
import { agUiStreamingPythonModule } from '../../../../cockpit/ag-ui/streaming/python/src/index';
import { deepAgentsMemoryPythonModule } from '../../../../cockpit/deep-agents/memory/python/src/index';
import { deepAgentsPlanningPythonModule } from '../../../../cockpit/deep-agents/planning/python/src/index';
import { deepAgentsFilesystemPythonModule } from '../../../../cockpit/deep-agents/filesystem/python/src/index';
Expand Down Expand Up @@ -81,6 +83,8 @@ const capabilityModules = [
langgraphSubgraphsPythonModule,
langgraphTimeTravelPythonModule,
langgraphDeploymentRuntimePythonModule,
agUiInterruptsPythonModule,
agUiStreamingPythonModule,
deepAgentsMemoryPythonModule,
deepAgentsPlanningPythonModule,
deepAgentsFilesystemPythonModule,
Expand Down Expand Up @@ -169,7 +173,7 @@ export const resolveCockpitEntry = ({
export const buildNavigationTree = (
manifest: CockpitManifestEntry[]
): NavigationProduct[] => {
const products: CockpitManifestEntry['product'][] = ['deep-agents', 'langgraph', 'render', 'chat'];
const products: CockpitManifestEntry['product'][] = ['deep-agents', 'langgraph', 'ag-ui', 'render', 'chat'];
const sections: CockpitManifestEntry['section'][] = [
'getting-started',
'core-capabilities',
Expand Down
Loading