Skip to content

Commit a85f03b

Browse files
committed
fix: fix error message, sglang doesn't provide extra [all]
1 parent 40c9e1b commit a85f03b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/inference/backends/sglang/sglang.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func (s *sglang) Install(_ context.Context, _ *http.Client) error {
100100
// Check if sglang is installed
101101
if err := s.pythonCmd("-c", "import sglang").Run(); err != nil {
102102
s.status = "sglang package not installed"
103-
s.log.Warnf("sglang package not found. Install with: uv pip install sglang[all]")
103+
s.log.Warnf("sglang package not found. Install with: uv pip install sglang")
104104
return ErrSGLangNotFound
105105
}
106106

0 commit comments

Comments
 (0)