Skip to content

Commit bdffa66

Browse files
committed
fix(models): update retired Claude option test
1 parent d2faac7 commit bdffa66

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/sim/blocks/pi-model-options.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,17 @@ describe('Pi model options', () => {
4444
}
4545
})
4646

47-
it('keeps current models and excludes stale catalog entries', () => {
47+
it('keeps current models and excludes retired catalog entries', () => {
4848
const modelIds = getPiModelOptions().map(({ id }) => id)
4949

5050
expect(modelIds).toContain('claude-sonnet-4-6')
51+
expect(modelIds).not.toContain('claude-opus-4-1')
5152
expect(modelIds).not.toContain('claude-sonnet-4-0')
5253
})
5354

5455
it('keeps persisted and selectable models available', () => {
5556
const modelIds = getPiModelOptions().map(({ id }) => id)
5657

57-
expect(modelIds).toContain('claude-opus-4-1')
5858
expect(modelIds).toContain('cerebras/zai-glm-4.7')
5959
expect(modelIds).toContain('glm-5.1')
6060
expect(modelIds).toContain('glm-4.5-air')

0 commit comments

Comments
 (0)