Skip to content

Commit b2d628d

Browse files
committed
gateway: allow DeepSeek V4 in the pinnable-catalog guard
deepseek-v4-pro is now an exposed, pinnable model, so drop it from the must-not-be-pinnable list in TestPinnableCatalog.
1 parent ee9e949 commit b2d628d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gateway/internal/provider/registry_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func TestPinnableCatalog(t *testing.T) {
5454
if pinnableCount < 12 {
5555
t.Errorf("expected the full pinnable lineup (>=12 models), got %d", pinnableCount)
5656
}
57-
for _, label := range []string{"gpt-oss-120b", "glm-5p1", "deepseek-v4-pro", "minimax-m3"} {
57+
for _, label := range []string{"gpt-oss-120b", "glm-5p1", "minimax-m3"} {
5858
if s, ok := reg.specByLabel(label); ok && s.Pinnable {
5959
t.Errorf("%s must not be pinnable (utility/retired/not-yet-live)", label)
6060
}

0 commit comments

Comments
 (0)