looprun 0.3.0 → 0.6.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.
Files changed (2) hide show
  1. package/bin/looprun.mjs +5 -3
  2. package/package.json +5 -5
package/bin/looprun.mjs CHANGED
@@ -16,7 +16,9 @@ const HELP = `looprun <command>
16
16
  models pull <alias> [--yes] Download the model GGUF (asks consent — sizes are 3–21 GB).
17
17
  models serve <alias> Start llama-server with the validated flags (Ctrl-C stops).
18
18
 
19
- Local model aliases: qwen3.5-4b (~2.9 GB) · qwen3.6-35b-a3b (~21 GB)
19
+ Local model tiers: ram24 (default, ~11.8 GB) · ram16 (16 GB machines) ·
20
+ ram32 (~17.2 GB) · ram8 (8 GB machines, ~2.5 GB) · qwen3.5-4b (plain fallback, ~2.9 GB)
21
+ (tiers re-keyed to RAM class 2026-07-15; old micro/minimal/normal/pro still accepted)
20
22
  `;
21
23
 
22
24
  async function confirm(question) {
@@ -58,7 +60,7 @@ async function main() {
58
60
  console.log('looprun init — environment check\n');
59
61
  const hasGoogle = !!process.env.GOOGLE_GENERATIVE_AI_API_KEY;
60
62
  console.log(` GOOGLE_GENERATIVE_AI_API_KEY : ${hasGoogle ? 'set' : 'NOT SET (needed for the gemini validation model)'}`);
61
- for (const alias of ['qwen3.5-4b', 'qwen3.6-35b-a3b']) await statusFor(models, alias);
63
+ for (const alias of ['qwen3.5-4b', 'ram24']) await statusFor(models, alias);
62
64
  const localIdx = process.argv.indexOf('--local');
63
65
  if (localIdx > -1) {
64
66
  const alias = process.argv[localIdx + 1];
@@ -77,7 +79,7 @@ async function main() {
77
79
 
78
80
  if (cmd === 'models') {
79
81
  if (sub === 'status') {
80
- const aliases = rest.length ? rest : ['qwen3.5-4b', 'qwen3.6-35b-a3b'];
82
+ const aliases = rest.length ? rest : ['qwen3.5-4b', 'ram24'];
81
83
  for (const alias of aliases) await statusFor(models, alias);
82
84
  return;
83
85
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "looprun",
3
- "version": "0.3.0",
3
+ "version": "0.6.0",
4
4
  "type": "module",
5
5
  "description": "looprun — a governance layer for LLM agents on top of agent frameworks (Mastra first). AgentSpec (the map) + deterministic typed guards (the safety kit) + redrive/honest-abstain (the GPS) + a generator skill. `import { LoopRunAgent } from 'looprun/mastra'`.",
6
6
  "keywords": [
@@ -58,10 +58,10 @@
58
58
  "node": ">=22"
59
59
  },
60
60
  "dependencies": {
61
- "@looprun-ai/mastra": "^0.3.0",
62
- "@looprun-ai/models": "^0.3.0",
63
- "@looprun-ai/vercel": "^0.3.0",
64
- "@looprun-ai/core": "^0.3.0"
61
+ "@looprun-ai/core": "^0.6.0",
62
+ "@looprun-ai/vercel": "^0.6.0",
63
+ "@looprun-ai/mastra": "^0.6.0",
64
+ "@looprun-ai/models": "^0.6.0"
65
65
  },
66
66
  "peerDependencies": {
67
67
  "@mastra/core": "^1.42.0",