Skip to content
Merged
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
10 changes: 8 additions & 2 deletions src/components/recipes/CommandBuilder.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -832,8 +832,14 @@ export function CommandBuilder({ recipe, strategies, taxonomy }) {
altCudaSuffix={altCudaSuffix}
/>

{/* ── Dependencies / extra install ── */}
{dependencies.length > 0 && <DependenciesBlock deps={dependencies} />}
{/* ── Dependencies / extra install ──
Hidden in docker mode: today every entry is a host-level
`pip install` / `bash install_*.sh`, which doesn't apply when
vLLM ships as a container image. Revisit if a dep ever needs
to run inside the container. */}
{effectiveInstallMode !== "docker" && dependencies.length > 0 && (
<DependenciesBlock deps={dependencies} />
)}

{/* ── VRAM shortfall warning (single-node only) ── */}
{vramShortfall && (
Expand Down