Skip to content

Commit feab25a

Browse files
committed
Preview content at main
1 parent 02b56c2 commit feab25a

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

remote-content/remote-sources/component-configs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const COMMON_REPO_CONFIGS = {
4040
'llm-d-main': {
4141
name: 'llm-d',
4242
org: 'llm-d',
43-
branch: 'main', // Community docs always sync from main
43+
branch: 'liu-cong-debug', // Community docs always sync from main
4444
description: 'Main llm-d repository with core architecture and documentation'
4545
},
4646
'llm-d-infra': {
@@ -80,4 +80,4 @@ export function generateRepoUrls(repoConfig) {
8080
sourceBaseUrl: `https://raw.githubusercontent.com/${org}/${name}/${ref}/`,
8181
ref // Return the actual ref being used
8282
};
83-
}
83+
}

remote-content/remote-sources/guide/guide-generator.js

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ import { getRepoTransform } from '../repo-transforms.js';
1616
const repoConfig = findRepoConfig('llm-d');
1717

1818
// Use the release version from YAML instead of the branch
19-
const releaseVersion = RELEASE_INFO.version;
19+
// const releaseVersion = RELEASE_INFO.version;
20+
const releaseVersion = "liu-cong-debug"
2021
const repoUrl = `https://github.com/${repoConfig.org}/${repoConfig.name}`;
2122
const sourceBaseUrl = `https://raw.githubusercontent.com/${repoConfig.org}/${repoConfig.name}/${releaseVersion}/`;
23+
// const sourceBaseUrl = repoUrl
2224

2325
// Create a custom transform that uses the release version instead of 'main'
2426
const transform = getRepoTransform(repoConfig.org, repoConfig.name);
@@ -73,6 +75,18 @@ const DYNAMIC_GUIDES = [
7375
description: 'Well-lit path for intelligent inference scheduling with load balancing',
7476
sidebarPosition: 3
7577
},
78+
{
79+
dirName: 'prefix-cache-storage',
80+
title: 'Prefix Cache Storage',
81+
description: 'Well-lit path for separating prefill and decode operations',
82+
sidebarPosition: 4
83+
},
84+
{
85+
dirName: 'prefix-cache-storage/cpu',
86+
title: 'Prefix Cache Storage - CPU',
87+
description: 'Well-lit path for separating prefill and decode operations',
88+
sidebarPosition: 4
89+
},
7690
{
7791
dirName: 'pd-disaggregation',
7892
title: 'Prefill/Decode Disaggregation',

0 commit comments

Comments
 (0)