Skip to content

Commit 0601728

Browse files
committed
fix(stats): pass all CI checks after rebase onto main
1 parent 9bc875c commit 0601728

3 files changed

Lines changed: 233 additions & 199 deletions

File tree

src/api/providers/__tests__/mimo.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,16 @@ describe("MimoHandler", () => {
8585
expect(model.id).toBe("mimo-v2.5-pro")
8686
expect(model.info.contextWindow).toBe(1_048_576)
8787
expect(model.info.maxTokens).toBe(131_072)
88-
expect(model.info.inputPrice).toBe(1.0)
89-
expect(model.info.outputPrice).toBe(3.0)
88+
expect(model.info.inputPrice).toBe(0.435)
89+
expect(model.info.outputPrice).toBe(0.87)
9090
})
9191

9292
it("should return correct model info for mimo-v2.5", () => {
9393
const h = new MimoHandler({ ...mockOptions, apiModelId: "mimo-v2.5" })
9494
const model = h.getModel()
9595
expect(model.id).toBe("mimo-v2.5")
96-
expect(model.info.inputPrice).toBe(0.4)
97-
expect(model.info.outputPrice).toBe(2.0)
96+
expect(model.info.inputPrice).toBe(0.14)
97+
expect(model.info.outputPrice).toBe(0.28)
9898
})
9999

100100
it("should fallback to default model for unknown model ID", () => {

0 commit comments

Comments
 (0)