feat: add GLM-5 model to Fireworks AI provider

This commit is contained in:
Roo Code 2026-03-03 20:17:06 +00:00
parent 9a58f76299
commit 844ab3aa14
2 changed files with 32 additions and 0 deletions

View file

@ -17,6 +17,7 @@ export type FireworksModelId =
| "accounts/fireworks/models/glm-4p5-air"
| "accounts/fireworks/models/glm-4p6"
| "accounts/fireworks/models/glm-4p7"
| "accounts/fireworks/models/glm-5"
| "accounts/fireworks/models/gpt-oss-20b"
| "accounts/fireworks/models/gpt-oss-120b"
| "accounts/fireworks/models/llama-v3p3-70b-instruct"
@ -210,6 +211,16 @@ export const fireworksModels = {
description:
"Z.ai GLM-4.7 is the latest coding model with exceptional performance on complex programming tasks. Features improved reasoning capabilities and enhanced code generation quality.",
},
"accounts/fireworks/models/glm-5": {
maxTokens: 25344,
contextWindow: 198000,
supportsImages: false,
supportsPromptCache: false,
inputPrice: 0.55,
outputPrice: 2.19,
description:
"Z.ai GLM-5 is the newest generation model from the GLM family with advanced reasoning, coding, and intelligent agent capabilities.",
},
"accounts/fireworks/models/llama-v3p3-70b-instruct": {
maxTokens: 16384,
contextWindow: 131072,

View file

@ -308,6 +308,27 @@ describe("FireworksHandler", () => {
)
})
it("should return GLM-5 model with correct configuration", () => {
const testModelId: FireworksModelId = "accounts/fireworks/models/glm-5"
const handlerWithModel = new FireworksHandler({
apiModelId: testModelId,
fireworksApiKey: "test-fireworks-api-key",
})
const model = handlerWithModel.getModel()
expect(model.id).toBe(testModelId)
expect(model.info).toEqual(
expect.objectContaining({
maxTokens: 25344,
contextWindow: 198000,
supportsImages: false,
supportsPromptCache: false,
inputPrice: 0.55,
outputPrice: 2.19,
description: expect.stringContaining("Z.ai GLM-5 is the newest generation model"),
}),
)
})
it("should return gpt-oss-20b model with correct configuration", () => {
const testModelId: FireworksModelId = "accounts/fireworks/models/gpt-oss-20b"
const handlerWithModel = new FireworksHandler({