opencommand-plugin 0.0.15 → 0.0.16
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/README.md +6 -0
- package/dist/index.js +9 -1
- package/dist/proxy/opencommand-proxy-darwin-amd64 +0 -0
- package/dist/proxy/opencommand-proxy-darwin-arm64 +0 -0
- package/dist/proxy/opencommand-proxy-linux-amd64 +0 -0
- package/dist/proxy/opencommand-proxy-linux-arm64 +0 -0
- package/dist/proxy/opencommand-proxy-windows-amd64.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -154,6 +154,12 @@ De publish workflow staat in `.github/workflows/npm-publish.yml`. Deze workflow
|
|
|
154
154
|
|
|
155
155
|
## Release notes
|
|
156
156
|
|
|
157
|
+
### v0.0.16
|
|
158
|
+
|
|
159
|
+
- MiniMax M3 (`MiniMaxAI/MiniMax-M3`) toegevoegd aan de open-source/Go-plan modellen.
|
|
160
|
+
- Qwen 3.7 Max (`Qwen/Qwen3.7-Max`) toegevoegd aan de open-source/Go-plan modellen.
|
|
161
|
+
- CommandCode protocol headers bijgewerkt naar CLI-versie `0.27.0`.
|
|
162
|
+
|
|
157
163
|
### v0.0.12
|
|
158
164
|
|
|
159
165
|
- OpenAI-compatible chat schema voor OpenCode requests.
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ const PROVIDER_NAME = "CommandCode";
|
|
|
11
11
|
const PROVIDER_API_KEY_PLACEHOLDER = "opencommand";
|
|
12
12
|
const DEFAULT_PROXY_BASE_URL = "http://localhost:3000/v1";
|
|
13
13
|
const COMMAND_CODE_API_BASE_URL = "https://api.commandcode.ai";
|
|
14
|
-
const COMMAND_CODE_CLIENT_VERSION = "0.
|
|
14
|
+
const COMMAND_CODE_CLIENT_VERSION = "0.27.0";
|
|
15
15
|
const COMMAND_CODE_PROJECT_SLUG = "opencommand";
|
|
16
16
|
const MODEL_CACHE_MAX_AGE_MS = 10 * 60 * 1000;
|
|
17
17
|
function isDebugEnabled() {
|
|
@@ -80,6 +80,14 @@ export const COMMAND_CODE_GO_PLAN_MODELS = [
|
|
|
80
80
|
output: 8192,
|
|
81
81
|
cost: { input: 1.0, output: 3.2, cache_read: 0.2 },
|
|
82
82
|
},
|
|
83
|
+
{
|
|
84
|
+
id: "MiniMaxAI/MiniMax-M3",
|
|
85
|
+
name: "MiniMax M3",
|
|
86
|
+
description: "Frontier coding, agents and native multimodality",
|
|
87
|
+
context: 1000000,
|
|
88
|
+
output: 8192,
|
|
89
|
+
cost: { input: 0.6, output: 2.4 },
|
|
90
|
+
},
|
|
83
91
|
{
|
|
84
92
|
id: "MiniMaxAI/MiniMax-M2.7",
|
|
85
93
|
name: "MiniMax M2.7",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|