opencode-free-fleet 0.2.1 ā 0.2.2
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/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/src/version.ts +2 -2
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* based on SOTA benchmark performance, enabling zero-cost, zero-latency
|
|
8
8
|
* execution for OpenCode agents.
|
|
9
9
|
*
|
|
10
|
-
* @version 0.2.
|
|
10
|
+
* @version 0.2.2
|
|
11
11
|
* @author Phorde
|
|
12
12
|
*/
|
|
13
13
|
// Export version
|
|
@@ -31,7 +31,7 @@ import * as path from 'path';
|
|
|
31
31
|
export const FreeFleetPlugin = async (ctx) => {
|
|
32
32
|
const { client, directory } = ctx;
|
|
33
33
|
console.log('\nš¤ OpenCode Free Fleet - Initializing...');
|
|
34
|
-
console.log(` Version: 0.2.
|
|
34
|
+
console.log(` Version: 0.2.2`);
|
|
35
35
|
console.log(` Directory: ${directory}\n`);
|
|
36
36
|
// Get config directory
|
|
37
37
|
const configDir = process.env.HOME ? `${process.env.HOME}/.config/opencode` : directory;
|
|
@@ -53,7 +53,7 @@ export const FreeFleetPlugin = async (ctx) => {
|
|
|
53
53
|
scout.printSummary(results);
|
|
54
54
|
// Cache results to free-models.json
|
|
55
55
|
const cacheData = {
|
|
56
|
-
version: '0.2.
|
|
56
|
+
version: '0.2.2',
|
|
57
57
|
timestamp: new Date().toISOString(),
|
|
58
58
|
categories: Object.fromEntries(Object.entries(results).map(([cat, res]) => [
|
|
59
59
|
cat,
|
|
@@ -112,7 +112,7 @@ export const FreeFleetPlugin = async (ctx) => {
|
|
|
112
112
|
service: 'free-fleet',
|
|
113
113
|
level: 'info',
|
|
114
114
|
message: 'Free Fleet plugin initialized',
|
|
115
|
-
extra: { version: '0.2.
|
|
115
|
+
extra: { version: '0.2.2', cacheExists }
|
|
116
116
|
});
|
|
117
117
|
// Run discovery if cache doesn't exist
|
|
118
118
|
if (!cacheExists) {
|
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-free-fleet",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Economic Load Balancing and Zero-Cost Model Discovery for OpenCode - Automatically ranks and competes free LLM models by benchmark performance",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Phorde",
|
package/src/version.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Version information
|
|
3
3
|
*/
|
|
4
|
-
export const VERSION = '0.2.
|
|
4
|
+
export const VERSION = '0.2.2';
|
|
5
5
|
export const BUILD_DATE = '2026-01-30';
|
|
6
|
-
export const RELEASE_NOTES = 'Fix build issues and TypeScript errors';
|
|
6
|
+
export const RELEASE_NOTES = 'Fix build issues and TypeScript errors';
|