Skip to content
Closed
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: 2 additions & 2 deletions remote-content/remote-sources/component-configs.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const COMMON_REPO_CONFIGS = {
'llm-d-main': {
name: 'llm-d',
org: 'llm-d',
branch: 'main', // Community docs always sync from main
branch: 'liu-cong-debug', // Community docs always sync from main
description: 'Main llm-d repository with core architecture and documentation'
},
'llm-d-infra': {
Expand Down Expand Up @@ -80,4 +80,4 @@ export function generateRepoUrls(repoConfig) {
sourceBaseUrl: `https://raw.githubusercontent.com/${org}/${name}/${ref}/`,
ref // Return the actual ref being used
};
}
}
16 changes: 15 additions & 1 deletion remote-content/remote-sources/guide/guide-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ import { getRepoTransform } from '../repo-transforms.js';
const repoConfig = findRepoConfig('llm-d');

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

// Create a custom transform that uses the release version instead of 'main'
const transform = getRepoTransform(repoConfig.org, repoConfig.name);
Expand Down Expand Up @@ -73,6 +75,18 @@ const DYNAMIC_GUIDES = [
description: 'Well-lit path for intelligent inference scheduling with load balancing',
sidebarPosition: 3
},
{
dirName: 'prefix-cache-storage',
title: 'Prefix Cache Storage',
description: 'Well-lit path for separating prefill and decode operations',
sidebarPosition: 4
},
{
dirName: 'prefix-cache-storage/cpu',
title: 'Prefix Cache Storage - CPU',
description: 'Well-lit path for separating prefill and decode operations',
sidebarPosition: 4
},
{
dirName: 'pd-disaggregation',
title: 'Prefill/Decode Disaggregation',
Expand Down
Loading