@anjieyang/uncommon-route 0.2.3 → 0.2.5

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "uncommon-route",
2
+ "id": "@anjieyang/uncommon-route",
3
3
  "name": "UncommonRoute",
4
4
  "description": "Local LLM router that cuts premium-model spend with smart routing, sessions, and spend control",
5
5
  "configSchema": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anjieyang/uncommon-route",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "OpenClaw plugin for UncommonRoute, the local LLM router that cuts premium-model spend",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -16,7 +16,7 @@
16
16
  import { spawn, execSync } from "node:child_process";
17
17
  import { setTimeout as sleep } from "node:timers/promises";
18
18
 
19
- const VERSION = "0.2.3";
19
+ const VERSION = "0.2.5";
20
20
  const DEFAULT_PORT = 8403;
21
21
  const DEFAULT_UPSTREAM = "";
22
22
  const HEALTH_TIMEOUT_MS = 15_000;
@@ -188,7 +188,7 @@ async function postJson(url, body) {
188
188
  let pyProc = null;
189
189
 
190
190
  const plugin = {
191
- id: "uncommon-route",
191
+ id: "@anjieyang/uncommon-route",
192
192
  name: "UncommonRoute",
193
193
  description: "Local LLM router plugin that cuts premium-model spend with smart routing",
194
194
  version: VERSION,