Fix cerebras test: update expected default model to gpt-oss-120b

This commit is contained in:
daniel-lxs 2025-10-29 15:49:27 -05:00
parent bd5807bac1
commit e7d0eb1668
No known key found for this signature in database
GPG key ID: 21C74479048B3AA6

View file

@ -56,7 +56,7 @@ describe("CerebrasHandler", () => {
it("should fallback to default model when apiModelId is not provided", () => {
const handlerWithoutModel = new CerebrasHandler({ cerebrasApiKey: "test" })
const { id } = handlerWithoutModel.getModel()
expect(id).toBe("qwen-3-coder-480b") // cerebrasDefaultModelId (routed)
expect(id).toBe("gpt-oss-120b") // cerebrasDefaultModelId
})
})