Add [Unreleased] section for next cycle
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
## [0.58.4] - 2026-03-16
|
## [0.58.4] - 2026-03-16
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
## [0.58.4] - 2026-03-16
|
## [0.58.4] - 2026-03-16
|
||||||
|
|
||||||
## [0.58.3] - 2026-03-15
|
## [0.58.3] - 2026-03-15
|
||||||
|
|||||||
@@ -9348,9 +9348,9 @@ export const MODELS = {
|
|||||||
reasoning: false,
|
reasoning: false,
|
||||||
input: ["text"],
|
input: ["text"],
|
||||||
cost: {
|
cost: {
|
||||||
input: 0.39999999999999997,
|
input: 0.26,
|
||||||
output: 1.2,
|
output: 0.78,
|
||||||
cacheRead: 0.08,
|
cacheRead: 0.052000000000000005,
|
||||||
cacheWrite: 0,
|
cacheWrite: 0,
|
||||||
},
|
},
|
||||||
contextWindow: 1000000,
|
contextWindow: 1000000,
|
||||||
@@ -9416,8 +9416,8 @@ export const MODELS = {
|
|||||||
reasoning: false,
|
reasoning: false,
|
||||||
input: ["text", "image"],
|
input: ["text", "image"],
|
||||||
cost: {
|
cost: {
|
||||||
input: 0.7999999999999999,
|
input: 0.52,
|
||||||
output: 3.1999999999999997,
|
output: 2.08,
|
||||||
cacheRead: 0,
|
cacheRead: 0,
|
||||||
cacheWrite: 0,
|
cacheWrite: 0,
|
||||||
},
|
},
|
||||||
@@ -9705,9 +9705,9 @@ export const MODELS = {
|
|||||||
reasoning: false,
|
reasoning: false,
|
||||||
input: ["text"],
|
input: ["text"],
|
||||||
cost: {
|
cost: {
|
||||||
input: 1.2,
|
input: 0.78,
|
||||||
output: 6,
|
output: 3.9,
|
||||||
cacheRead: 0.24,
|
cacheRead: 0.156,
|
||||||
cacheWrite: 0,
|
cacheWrite: 0,
|
||||||
},
|
},
|
||||||
contextWindow: 262144,
|
contextWindow: 262144,
|
||||||
@@ -9994,8 +9994,8 @@ export const MODELS = {
|
|||||||
reasoning: true,
|
reasoning: true,
|
||||||
input: ["text", "image"],
|
input: ["text", "image"],
|
||||||
cost: {
|
cost: {
|
||||||
input: 0.09999999999999999,
|
input: 0.065,
|
||||||
output: 0.39999999999999997,
|
output: 0.26,
|
||||||
cacheRead: 0,
|
cacheRead: 0,
|
||||||
cacheWrite: 0,
|
cacheWrite: 0,
|
||||||
},
|
},
|
||||||
@@ -13013,6 +13013,23 @@ export const MODELS = {
|
|||||||
contextWindow: 202800,
|
contextWindow: 202800,
|
||||||
maxTokens: 131100,
|
maxTokens: 131100,
|
||||||
} satisfies Model<"anthropic-messages">,
|
} satisfies Model<"anthropic-messages">,
|
||||||
|
"zai/glm-5-turbo": {
|
||||||
|
id: "zai/glm-5-turbo",
|
||||||
|
name: "GLM 5 Turbo",
|
||||||
|
api: "anthropic-messages",
|
||||||
|
provider: "vercel-ai-gateway",
|
||||||
|
baseUrl: "https://ai-gateway.vercel.sh",
|
||||||
|
reasoning: true,
|
||||||
|
input: ["text"],
|
||||||
|
cost: {
|
||||||
|
input: 1.2,
|
||||||
|
output: 4,
|
||||||
|
cacheRead: 0.24,
|
||||||
|
cacheWrite: 0,
|
||||||
|
},
|
||||||
|
contextWindow: 202800,
|
||||||
|
maxTokens: 131100,
|
||||||
|
} satisfies Model<"anthropic-messages">,
|
||||||
},
|
},
|
||||||
"xai": {
|
"xai": {
|
||||||
"grok-2": {
|
"grok-2": {
|
||||||
@@ -13604,5 +13621,23 @@ export const MODELS = {
|
|||||||
contextWindow: 204800,
|
contextWindow: 204800,
|
||||||
maxTokens: 131072,
|
maxTokens: 131072,
|
||||||
} satisfies Model<"openai-completions">,
|
} satisfies Model<"openai-completions">,
|
||||||
|
"glm-5-turbo": {
|
||||||
|
id: "glm-5-turbo",
|
||||||
|
name: "GLM-5-Turbo",
|
||||||
|
api: "openai-completions",
|
||||||
|
provider: "zai",
|
||||||
|
baseUrl: "https://api.z.ai/api/coding/paas/v4",
|
||||||
|
compat: {"supportsDeveloperRole":false,"thinkingFormat":"zai"},
|
||||||
|
reasoning: true,
|
||||||
|
input: ["text"],
|
||||||
|
cost: {
|
||||||
|
input: 1.2,
|
||||||
|
output: 4,
|
||||||
|
cacheRead: 0.24,
|
||||||
|
cacheWrite: 0,
|
||||||
|
},
|
||||||
|
contextWindow: 200000,
|
||||||
|
maxTokens: 131072,
|
||||||
|
} satisfies Model<"openai-completions">,
|
||||||
},
|
},
|
||||||
} as const;
|
} as const;
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
## [0.58.4] - 2026-03-16
|
## [0.58.4] - 2026-03-16
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
## [0.58.4] - 2026-03-16
|
## [0.58.4] - 2026-03-16
|
||||||
|
|
||||||
## [0.58.3] - 2026-03-15
|
## [0.58.3] - 2026-03-15
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
## [0.58.4] - 2026-03-16
|
## [0.58.4] - 2026-03-16
|
||||||
|
|
||||||
## [0.58.3] - 2026-03-15
|
## [0.58.3] - 2026-03-15
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
## [0.58.4] - 2026-03-16
|
## [0.58.4] - 2026-03-16
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
Reference in New Issue
Block a user