@link-assistant/agent 0.16.2 → 0.16.3
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 +1 -2
- package/package.json +1 -1
- package/src/provider/provider.ts +2 -4
package/README.md
CHANGED
|
@@ -194,9 +194,8 @@ echo '{"message":"run command","tools":[{"name":"bash","params":{"command":"ls -
|
|
|
194
194
|
echo "hi" | agent
|
|
195
195
|
|
|
196
196
|
# Other free models (in order of recommendation)
|
|
197
|
-
echo "hi" | agent --model opencode/minimax-m2.
|
|
197
|
+
echo "hi" | agent --model opencode/minimax-m2.5-free
|
|
198
198
|
echo "hi" | agent --model opencode/gpt-5-nano
|
|
199
|
-
echo "hi" | agent --model opencode/glm-4.7-free
|
|
200
199
|
echo "hi" | agent --model opencode/big-pickle
|
|
201
200
|
|
|
202
201
|
# Premium models (OpenCode Zen subscription)
|
package/package.json
CHANGED
package/src/provider/provider.ts
CHANGED
|
@@ -1397,9 +1397,8 @@ export namespace Provider {
|
|
|
1397
1397
|
if (providerID === 'opencode' || providerID === 'local') {
|
|
1398
1398
|
priority = [
|
|
1399
1399
|
'kimi-k2.5-free',
|
|
1400
|
-
'minimax-m2.
|
|
1400
|
+
'minimax-m2.5-free',
|
|
1401
1401
|
'gpt-5-nano',
|
|
1402
|
-
'glm-4.7-free',
|
|
1403
1402
|
'big-pickle',
|
|
1404
1403
|
];
|
|
1405
1404
|
}
|
|
@@ -1430,9 +1429,8 @@ export namespace Provider {
|
|
|
1430
1429
|
const priority = [
|
|
1431
1430
|
'glm-5-free',
|
|
1432
1431
|
'kimi-k2.5-free',
|
|
1433
|
-
'minimax-m2.
|
|
1432
|
+
'minimax-m2.5-free',
|
|
1434
1433
|
'gpt-5-nano',
|
|
1435
|
-
'glm-4.7-free',
|
|
1436
1434
|
'big-pickle',
|
|
1437
1435
|
'gpt-5',
|
|
1438
1436
|
'claude-sonnet-4',
|