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
2 changes: 1 addition & 1 deletion website/src/components/ArchitectureDiagram.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export function ArchitectureDiagram() {
<LogoMark logo={DOCKER} />
</div>
<div className="arch-orchestration__cells">
{['Projects', 'Fleets', 'Runs', 'Presets', 'Gateways'].map(name => (
{['Fleets', 'Tasks', 'Services', 'Presets', 'Gateways'].map(name => (
<div className="arch-subcell" key={name}>
{name}
</div>
Expand Down
13 changes: 6 additions & 7 deletions website/src/pages/Home/ExploreSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ import { highlightTerms } from '../../components/highlightTerms';
import { docsUrl } from '../../routes';
import { CapList, CloudGlyph, KubernetesGlyph, ServerGlyph } from './GetStartedSection';

// Core orchestration primitives shown in the "AI-native orchestration" block. "Runs" folds the
// three run types (dev environments, tasks, services) into one card; there's no single runs
// concept page, so it links to the quickstart ("creating fleets and submitting runs").
// Core orchestration primitives shown in the "AI-native orchestration" block.
const keyConcepts = [
{ name: 'Projects', href: docsUrl('concepts/projects'), description: 'Multi-tenancy and resource isolation' },
{ name: 'Fleets', href: docsUrl('concepts/fleets'), description: 'Cluster provisioning and monitoring' },
{ name: 'Runs', href: docsUrl('quickstart'), description: 'Training and inference primitives' },
{ name: 'Presets', href: docsUrl('concepts/presets'), description: 'Agent-based inference optimization' },
{ name: 'Gateways', href: docsUrl('concepts/gateways'), description: 'Ingress, auto-scaling, rate limits, etc' },
{ name: 'Tasks', href: docsUrl('concepts/tasks'), description: 'Training and other kind of jobs scheduling' },
{ name: 'Services', href: docsUrl('concepts/services'), description: 'Cache-aware and PD-disaggregated inference' },
{ name: 'Gateways', href: docsUrl('concepts/gateways'), description: 'HTTPS, auto-scaling, domains, and rate limits' },
{ name: 'Presets', href: docsUrl('concepts/presets'), description: 'Agent-based optimization toolkit' },
{ name: 'Projects', href: docsUrl('concepts/projects'), description: 'Tenant isolation and usage metering' },
];

// The main marketing content: a sequence of alternating documentation blocks.
Expand Down
Loading