micro-models-agent 0.54.0 → 0.54.1
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/main.js +2 -2
- package/package.json +50 -50
package/dist/main.js
CHANGED
|
@@ -2642,7 +2642,7 @@ Fix the error and re-edit the file (a clean write clears the failure), or mark t
|
|
|
2642
2642
|
"cli.model_fetch_failed": "Failed to fetch models: {error}",
|
|
2643
2643
|
"cli.available_models": "Available models:",
|
|
2644
2644
|
"cli.cert_label": "supported — certified on this provider",
|
|
2645
|
-
"cli.cert_stale_label": "certified on an older MMA version —
|
|
2645
|
+
"cli.cert_stale_label": "certified on an older MMA version — recommended",
|
|
2646
2646
|
"cli.no_models_found": "No models found from provider",
|
|
2647
2647
|
"cli.fetching_models": "Fetching model list...",
|
|
2648
2648
|
"cli.manage_context": "Manage context window",
|
|
@@ -3373,7 +3373,7 @@ var init_ru = __esm(() => {
|
|
|
3373
3373
|
"cli.model_fetch_failed": "Не удалось получить модели: {error}",
|
|
3374
3374
|
"cli.available_models": "Доступные модели:",
|
|
3375
3375
|
"cli.cert_label": "поддерживается — сертифицирована на этом провайдере",
|
|
3376
|
-
"cli.cert_stale_label": "сертифицирована на старой версии MMA —
|
|
3376
|
+
"cli.cert_stale_label": "сертифицирована на старой версии MMA — рекомендуется",
|
|
3377
3377
|
"cli.no_models_found": "Модели не найдены у провайдера",
|
|
3378
3378
|
"cli.fetching_models": "Загрузка списка моделей...",
|
|
3379
3379
|
"cli.manage_context": "Управление контекстным окном",
|
package/package.json
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "micro-models-agent",
|
|
3
|
-
"version": "0.54.
|
|
4
|
-
"description": "Micro Models Agent (MMA) — LLM agent harness for small models (Qwen3.5-9B, 32K-64K context)",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"mma": "bin/mma.mjs"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"dist/",
|
|
11
|
-
"bin/"
|
|
12
|
-
],
|
|
13
|
-
"engines": {
|
|
14
|
-
"node": ">=20"
|
|
15
|
-
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"mma": "bun run src/cli/main.ts",
|
|
18
|
-
"build": "bun run build:tsc && bun run build:copy-assets",
|
|
19
|
-
"build:tsc": "tsc -p tsconfig.build.json",
|
|
20
|
-
"build:copy-assets": "bun run scripts/copy-assets.ts",
|
|
21
|
-
"build:prod": "bun run 'build:bundle' && bun run 'build:copy-assets'",
|
|
22
|
-
"build:clean": "cmd /c \"if exist dist rmdir /s /q dist\"",
|
|
23
|
-
"build:bundle": "bun build ./src/cli/main.ts --outfile ./dist/main.js --target node --format esm --external playwright",
|
|
24
|
-
"dev": "bun --watch src/cli/main.ts",
|
|
25
|
-
"typecheck": "tsc --noEmit",
|
|
26
|
-
"test": "bun test",
|
|
27
|
-
"test:watch": "bun test --watch",
|
|
28
|
-
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
29
|
-
"format": "prettier --write \"src/**/*.{ts,js,mjs,json}\" \"tests/**/*.{ts,js,json}\" \"scripts/**/*.ts\" \"*.{ts,json}\"",
|
|
30
|
-
"format:check": "prettier --check \"src/**/*.{ts,js,mjs,json}\" \"tests/**/*.{ts,js,json}\" \"scripts/**/*.ts\" \"*.{ts,json}\""
|
|
31
|
-
},
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"commander": "^12.0.0",
|
|
34
|
-
"js-tiktoken": "^1.0.0",
|
|
35
|
-
"jsonrepair": "^3.15.0",
|
|
36
|
-
"picocolors": "^1.1.1",
|
|
37
|
-
"playwright": "^1.62.0",
|
|
38
|
-
"string-width": "^8.2.2",
|
|
39
|
-
"yaml": "^2.9.0"
|
|
40
|
-
},
|
|
41
|
-
"devDependencies": {
|
|
42
|
-
"@types/bun": "^1.4.0",
|
|
43
|
-
"@types/node": "^26.3.0",
|
|
44
|
-
"@vitest/coverage-v8": "^4.1.11",
|
|
45
|
-
"prettier": "^3.9.6",
|
|
46
|
-
"tsconfig-paths": "^4.2.0",
|
|
47
|
-
"typescript": "^
|
|
48
|
-
"vitest": "^4.1.11"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "micro-models-agent",
|
|
3
|
+
"version": "0.54.1",
|
|
4
|
+
"description": "Micro Models Agent (MMA) — LLM agent harness for small models (Qwen3.5-9B, 32K-64K context)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"mma": "bin/mma.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/",
|
|
11
|
+
"bin/"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=20"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"mma": "bun run src/cli/main.ts",
|
|
18
|
+
"build": "bun run build:tsc && bun run build:copy-assets",
|
|
19
|
+
"build:tsc": "tsc -p tsconfig.build.json",
|
|
20
|
+
"build:copy-assets": "bun run scripts/copy-assets.ts",
|
|
21
|
+
"build:prod": "bun run 'build:bundle' && bun run 'build:copy-assets'",
|
|
22
|
+
"build:clean": "cmd /c \"if exist dist rmdir /s /q dist\"",
|
|
23
|
+
"build:bundle": "bun build ./src/cli/main.ts --outfile ./dist/main.js --target node --format esm --external playwright",
|
|
24
|
+
"dev": "bun --watch src/cli/main.ts",
|
|
25
|
+
"typecheck": "tsc --noEmit",
|
|
26
|
+
"test": "bun test",
|
|
27
|
+
"test:watch": "bun test --watch",
|
|
28
|
+
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
29
|
+
"format": "prettier --write \"src/**/*.{ts,js,mjs,json}\" \"tests/**/*.{ts,js,json}\" \"scripts/**/*.ts\" \"*.{ts,json}\"",
|
|
30
|
+
"format:check": "prettier --check \"src/**/*.{ts,js,mjs,json}\" \"tests/**/*.{ts,js,json}\" \"scripts/**/*.ts\" \"*.{ts,json}\""
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"commander": "^12.0.0",
|
|
34
|
+
"js-tiktoken": "^1.0.0",
|
|
35
|
+
"jsonrepair": "^3.15.0",
|
|
36
|
+
"picocolors": "^1.1.1",
|
|
37
|
+
"playwright": "^1.62.0",
|
|
38
|
+
"string-width": "^8.2.2",
|
|
39
|
+
"yaml": "^2.9.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/bun": "^1.4.0",
|
|
43
|
+
"@types/node": "^26.3.0",
|
|
44
|
+
"@vitest/coverage-v8": "^4.1.11",
|
|
45
|
+
"prettier": "^3.9.6",
|
|
46
|
+
"tsconfig-paths": "^4.2.0",
|
|
47
|
+
"typescript": "^5.9.3",
|
|
48
|
+
"vitest": "^4.1.11"
|
|
49
|
+
}
|
|
50
|
+
}
|