@solongate/proxy 0.77.0 → 0.77.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.js +1 -1
- package/dist/tui/index.js +1 -1
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -7324,7 +7324,7 @@ function LivePanel({ active: active2 }) {
|
|
|
7324
7324
|
const prev = prevStatus.current.get(r.id);
|
|
7325
7325
|
if (prev && prev === "active" && r.status === "idle") {
|
|
7326
7326
|
const name = r.isMe ? `${r.agent} (this machine)` : r.agent;
|
|
7327
|
-
const msg = `${name} went IDLE
|
|
7327
|
+
const msg = `${name} went IDLE, no tool call for 60s`;
|
|
7328
7328
|
pushLog(`\u23F8 ${msg}`, "warn");
|
|
7329
7329
|
setAlerts((a) => [...a.filter((x) => x.id !== r.id), { id: r.id, msg, until: Date.now() + 15e3 }].slice(-4));
|
|
7330
7330
|
try {
|
package/dist/tui/index.js
CHANGED
|
@@ -754,7 +754,7 @@ function LivePanel({ active: active2 }) {
|
|
|
754
754
|
const prev = prevStatus.current.get(r.id);
|
|
755
755
|
if (prev && prev === "active" && r.status === "idle") {
|
|
756
756
|
const name = r.isMe ? `${r.agent} (this machine)` : r.agent;
|
|
757
|
-
const msg = `${name} went IDLE
|
|
757
|
+
const msg = `${name} went IDLE, no tool call for 60s`;
|
|
758
758
|
pushLog(`\u23F8 ${msg}`, "warn");
|
|
759
759
|
setAlerts((a) => [...a.filter((x) => x.id !== r.id), { id: r.id, msg, until: Date.now() + 15e3 }].slice(-4));
|
|
760
760
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.77.
|
|
3
|
+
"version": "0.77.2",
|
|
4
4
|
"description": "AI tool security proxy: protect any AI tool server with customizable policies, path/command constraints, rate limiting, and audit logging. No code changes required.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@open-policy-agent/opa-wasm": "^1.10.0",
|
|
71
71
|
"@solongate/tsconfig": "workspace:*",
|
|
72
|
+
"@types/node": "^22.0.0",
|
|
72
73
|
"@types/react": "^18.3.12",
|
|
73
74
|
"chalk": "^5.3.0",
|
|
74
75
|
"esbuild": "^0.19.12",
|