opencode-qoder 0.1.0 → 0.2.0

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 CHANGED
@@ -23,7 +23,7 @@ Add the built plugin to `opencode.json` in this repo, or adjust the relative pat
23
23
  }
24
24
  ```
25
25
 
26
- The plugin registers provider `qoder` and these models: `auto`, `ultimate`, `performance`, `efficient`, `lite`, `qmodel`, `qmodel_latest`, `dmodel`, `dfmodel`, `gm51model`, `kmodel`, and `mmodel`.
26
+ The plugin registers provider `qoder` and these models: `auto`, `ultimate`, `performance`, `efficient`, `lite`, `qmodel_preview`, `qmodel`, `qmodel_latest`, `dmodel`, `dfmodel`, `gm51model`, `kmodel_latest`, `kmodel`, and `mmodel`.
27
27
 
28
28
  ## Authenticate
29
29
 
package/dist/constants.js CHANGED
@@ -58,10 +58,19 @@ export const QODER_MODELS = [
58
58
  contextWindow: 180000,
59
59
  maxTokens: 32768,
60
60
  },
61
+ {
62
+ id: "qmodel_preview",
63
+ name: "Qwen3.8 Max Preview (Qoder)",
64
+ reasoning: true,
65
+ supportsEffort: false,
66
+ input: ["text", "image"],
67
+ contextWindow: 1000000,
68
+ maxTokens: 32768,
69
+ },
61
70
  {
62
71
  id: "qmodel",
63
72
  name: "Qwen3.7 Plus (Qoder)",
64
- reasoning: false,
73
+ reasoning: true,
65
74
  supportsEffort: false,
66
75
  input: ["text", "image"],
67
76
  contextWindow: 1000000,
@@ -70,7 +79,7 @@ export const QODER_MODELS = [
70
79
  {
71
80
  id: "qmodel_latest",
72
81
  name: "Qwen3.7 Max (Qoder)",
73
- reasoning: false,
82
+ reasoning: true,
74
83
  supportsEffort: false,
75
84
  input: ["text", "image"],
76
85
  contextWindow: 1000000,
@@ -96,16 +105,25 @@ export const QODER_MODELS = [
96
105
  },
97
106
  {
98
107
  id: "gm51model",
99
- name: "GLM 5.1 (Qoder)",
108
+ name: "GLM 5.2 (Qoder)",
100
109
  reasoning: true,
101
110
  supportsEffort: true,
102
111
  input: ["text", "image"],
103
- contextWindow: 180000,
112
+ contextWindow: 1000000,
113
+ maxTokens: 32768,
114
+ },
115
+ {
116
+ id: "kmodel_latest",
117
+ name: "Kimi K3 (Qoder)",
118
+ reasoning: false,
119
+ supportsEffort: false,
120
+ input: ["text", "image"],
121
+ contextWindow: 1000000,
104
122
  maxTokens: 32768,
105
123
  },
106
124
  {
107
125
  id: "kmodel",
108
- name: "Kimi K2.6 (Qoder)",
126
+ name: "Kimi K2.7 Code (Qoder)",
109
127
  reasoning: false,
110
128
  supportsEffort: false,
111
129
  input: ["text", "image"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-qoder",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Qoder provider plugin for opencode",
5
5
  "keywords": [
6
6
  "ai-sdk-provider",