@link-assistant/hive-mind 1.18.0 → 1.19.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @link-assistant/hive-mind
|
|
2
2
|
|
|
3
|
+
## 1.19.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 64687ce: Add support and documentation for free AI models:
|
|
8
|
+
- Added support for opencode/big-pickle, opencode/gpt-5-nano, opencode/kimi-k2.5-free, opencode/glm-4.7-free, opencode/minimax-m2.1-free
|
|
9
|
+
- Updated model mapping and validation to handle free models
|
|
10
|
+
- Created comprehensive documentation in FREE_MODELS.md
|
|
11
|
+
- Added tests for all free model support
|
|
12
|
+
- Created case study analysis for issue #1244
|
|
13
|
+
|
|
3
14
|
## 1.18.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -31,7 +31,10 @@ export const agentModels = {
|
|
|
31
31
|
'grok-code': 'opencode/grok-code',
|
|
32
32
|
'grok-code-fast-1': 'opencode/grok-code',
|
|
33
33
|
'big-pickle': 'opencode/big-pickle',
|
|
34
|
-
'gpt-5-nano': '
|
|
34
|
+
'gpt-5-nano': 'opencode/gpt-5-nano',
|
|
35
|
+
'glm-4.7-free': 'opencode/glm-4.7-free',
|
|
36
|
+
'minimax-m2.1-free': 'opencode/minimax-m2.1-free',
|
|
37
|
+
'kimi-k2.5-free': 'opencode/kimi-k2.5-free',
|
|
35
38
|
sonnet: 'anthropic/claude-3-5-sonnet',
|
|
36
39
|
haiku: 'anthropic/claude-3-5-haiku',
|
|
37
40
|
opus: 'anthropic/claude-3-opus',
|
|
@@ -99,6 +99,9 @@ export const AGENT_MODELS = {
|
|
|
99
99
|
'grok-code-fast-1': 'opencode/grok-code',
|
|
100
100
|
'big-pickle': 'opencode/big-pickle',
|
|
101
101
|
'gpt-5-nano': 'opencode/gpt-5-nano',
|
|
102
|
+
'glm-4.7-free': 'opencode/glm-4.7-free',
|
|
103
|
+
'minimax-m2.1-free': 'opencode/minimax-m2.1-free',
|
|
104
|
+
'kimi-k2.5-free': 'opencode/kimi-k2.5-free',
|
|
102
105
|
// Premium models (requires OpenCode Zen subscription)
|
|
103
106
|
sonnet: 'anthropic/claude-3-5-sonnet',
|
|
104
107
|
haiku: 'anthropic/claude-3-5-haiku',
|
|
@@ -108,6 +111,9 @@ export const AGENT_MODELS = {
|
|
|
108
111
|
'opencode/grok-code': 'opencode/grok-code',
|
|
109
112
|
'opencode/big-pickle': 'opencode/big-pickle',
|
|
110
113
|
'opencode/gpt-5-nano': 'opencode/gpt-5-nano',
|
|
114
|
+
'opencode/glm-4.7-free': 'opencode/glm-4.7-free',
|
|
115
|
+
'opencode/minimax-m2.1-free': 'opencode/minimax-m2.1-free',
|
|
116
|
+
'opencode/kimi-k2.5-free': 'opencode/kimi-k2.5-free',
|
|
111
117
|
'anthropic/claude-3-5-sonnet': 'anthropic/claude-3-5-sonnet',
|
|
112
118
|
'anthropic/claude-3-5-haiku': 'anthropic/claude-3-5-haiku',
|
|
113
119
|
'anthropic/claude-3-opus': 'anthropic/claude-3-opus',
|
package/src/solve.config.lib.mjs
CHANGED
|
@@ -390,7 +390,7 @@ export const createYargsConfig = yargsInstance => {
|
|
|
390
390
|
config = config
|
|
391
391
|
.option('model', {
|
|
392
392
|
type: 'string',
|
|
393
|
-
description: 'Model to use (for claude: opus, sonnet, haiku, haiku-3-5, haiku-3; for opencode: grok, gpt4o; for codex: gpt5, gpt5-codex, o3; for agent: grok, grok-code, big-pickle)',
|
|
393
|
+
description: 'Model to use (for claude: opus, sonnet, haiku, haiku-3-5, haiku-3; for opencode: grok, gpt4o; for codex: gpt5, gpt5-codex, o3; for agent: grok, grok-code, big-pickle, gpt-5-nano, glm-4.7-free, minimax-m2.1-free, kimi-k2.5-free)',
|
|
394
394
|
alias: 'm',
|
|
395
395
|
default: currentParsedArgs => {
|
|
396
396
|
// Dynamic default based on tool selection
|