pi-dashscope 1.0.2 → 1.0.4
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/index.ts +10 -0
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -107,6 +107,16 @@ const DASHSCOPE_MODELS = [
|
|
|
107
107
|
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
|
|
108
108
|
compat: { thinkingFormat: "qwen", supportsDeveloperRole: false },
|
|
109
109
|
},
|
|
110
|
+
{
|
|
111
|
+
id: "glm-5",
|
|
112
|
+
name: "GLM-5",
|
|
113
|
+
reasoning: true,
|
|
114
|
+
input: ["text"] as ["text"],
|
|
115
|
+
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
|
|
116
|
+
contextWindow: 202752,
|
|
117
|
+
maxTokens: 16384,
|
|
118
|
+
compat: { thinkingFormat: "qwen", supportsDeveloperRole: false },
|
|
119
|
+
},
|
|
110
120
|
// ── Kimi K2.5 ─────────────────────────────────────────────────────────
|
|
111
121
|
// Extended thinking enabled | 252K context | 32K output
|
|
112
122
|
{
|