Skip to content
Open
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 packages/constants/src/framework-aliases.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ describe('FRAMEWORK_LABELS', () => {
it('labels the atom-disagg alias with its canonical label', () => {
expect(FRAMEWORK_LABELS['atom-disagg']).toBe('Mooncake ATOMesh¹');
});

it('labels the canonical llm-d-vllm framework "llm-d vLLM"', () => {
expect(FRAMEWORK_LABELS['llm-d-vllm']).toBe('llm-d vLLM');
});
});

describe('MODEL_SPEC_METHOD_LABELS', () => {
Expand Down
1 change: 1 addition & 0 deletions packages/constants/src/framework-aliases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export const FW_REGISTRY: Record<string, FwEntry> = {
'dynamo-sglang': { label: 'Dynamo SGLang' },
'dynamo-trt': { label: 'Dynamo TRTLLM' },
'dynamo-vllm': { label: 'Dynamo vLLM' },
'llm-d-vllm': { label: 'llm-d vLLM' },
'mooncake-atom': { label: 'Mooncake ATOMesh¹' },
'mori-sglang': { label: 'MoRI SGLang' },
sglang: { label: 'SGLang' },
Expand Down