@sayknow-cli/ai 0.5.6 → 0.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -1
- package/dist/types/model-thinking.d.ts +7 -0
- package/dist/types/providers/anthropic.d.ts +1 -1
- package/package.json +2 -2
- package/src/model-thinking.ts +47 -7
- package/src/models.json +12150 -1310
- package/src/provider-models/descriptors.ts +1 -1
- package/src/providers/anthropic.ts +1 -1
|
@@ -338,7 +338,7 @@ export const PROVIDER_DESCRIPTORS: readonly ProviderDescriptor[] = [
|
|
|
338
338
|
config => bizrouterModelManagerOptions(config),
|
|
339
339
|
catalog("BizRouter", ["BIZROUTER_API_KEY"]),
|
|
340
340
|
),
|
|
341
|
-
catalogDescriptor("zai", "glm-5.
|
|
341
|
+
catalogDescriptor("zai", "glm-5.3", config => zaiModelManagerOptions(config), catalog("zAI", ["ZAI_API_KEY"])),
|
|
342
342
|
catalogDescriptor(
|
|
343
343
|
"glm-zcode",
|
|
344
344
|
"glm-5.2",
|
|
@@ -491,7 +491,7 @@ function getCacheControl(
|
|
|
491
491
|
}
|
|
492
492
|
|
|
493
493
|
// Stealth mode: Mimic Anthropic Code headers and tool prefixing.
|
|
494
|
-
export const claudeCodeVersion = "2.1.
|
|
494
|
+
export const claudeCodeVersion = "2.1.267";
|
|
495
495
|
export const claudeCodeEntrypoint = "sdk-cli";
|
|
496
496
|
export const claudeToolPrefix: string = "proxy_";
|
|
497
497
|
export const claudeCodeSystemInstruction = "You are a Claude agent, built on Anthropic's Claude Agent SDK.";
|