pi-clinepass 0.1.3 → 0.1.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/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/src/catalog.ts +24 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 0.1.4 - 2026-09-09
|
|
6
|
+
|
|
7
|
+
- New free model: `cline-free/solar-pro4` and `cline-free/muse-spark-1.3-contributor`
|
|
8
|
+
|
|
5
9
|
## 0.1.3 - 2026-08-31
|
|
6
10
|
|
|
7
11
|
- Corrected model input modalities: `glm-5.3` and `deepseek-v4-flash` are text-only, `mimo-v2.5` and `qwen3.8-max` accept images
|
package/package.json
CHANGED
package/src/catalog.ts
CHANGED
|
@@ -102,6 +102,28 @@ const XHIGH_MEDIUM_LOW: ThinkingLevelMap = {
|
|
|
102
102
|
max: null,
|
|
103
103
|
};
|
|
104
104
|
|
|
105
|
+
/** Only off/medium/high. Used for solar-pro4. */
|
|
106
|
+
const OFF_MEDIUM_HIGH: ThinkingLevelMap = {
|
|
107
|
+
off: "none",
|
|
108
|
+
minimal: null,
|
|
109
|
+
low: null,
|
|
110
|
+
medium: "medium",
|
|
111
|
+
high: "high",
|
|
112
|
+
xhigh: null,
|
|
113
|
+
max: null,
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
/** minimal..xhigh, mandatory (no off, no max). Used for muse-spark contributor. */
|
|
117
|
+
const MANDATORY_NO_MAX: ThinkingLevelMap = {
|
|
118
|
+
off: null,
|
|
119
|
+
minimal: "minimal",
|
|
120
|
+
low: "low",
|
|
121
|
+
medium: "medium",
|
|
122
|
+
high: "high",
|
|
123
|
+
xhigh: "xhigh",
|
|
124
|
+
max: null,
|
|
125
|
+
};
|
|
126
|
+
|
|
105
127
|
/**
|
|
106
128
|
* ClinePass rejects the `developer` role; the API caps at `max_tokens` /
|
|
107
129
|
* `max_completion_tokens` with reasoning excluded from the completion cap,
|
|
@@ -146,6 +168,8 @@ export const MODELS: readonly ClinePassModel[] = [
|
|
|
146
168
|
model("z-ai/glm-5.3-flash", "GLM-5.3 Flash", [0, 0, 0], 921_600, 131_072, ["text", "image"], MAX_HIGH_LOW_MANDATORY),
|
|
147
169
|
model("deepseek/deepseek-v4-flash", "DeepSeek V4 Flash", [0, 0, 0], 921_600, 131_072, ["text"], MAX_HIGH_LOW),
|
|
148
170
|
model("poolside/laguna-s-2.1:free", "Laguna S-2.1", [0, 0, 0], 262_144, 131_072, ["text"], ALL_THINKING),
|
|
171
|
+
model("cline-free/solar-pro4", "Solar Pro 4", [0, 0, 0], 524_288, 131_072, ["text"], OFF_MEDIUM_HIGH),
|
|
172
|
+
model("cline-free/muse-spark-1.3-contributor", "Muse Spark 1.3 Contributor", [0, 0, 0], 921_600, 131_072, ["text", "image"], MANDATORY_NO_MAX),
|
|
149
173
|
// ── ClinePass models (measured billing prices) ─────────────────────────
|
|
150
174
|
model("cline-pass/glm-5.3-flash", "GLM-5.3 Flash", [0.15, 0.5, 0.03], 921_600, 131_072, ["text", "image"], MAX_HIGH_LOW_MANDATORY),
|
|
151
175
|
model("cline-pass/glm-5.3", "GLM-5.3", [1.4, 4.4, 0.26], 921_600, 131_072, ["text"], MAX_HIGH_LOW_MANDATORY),
|