@poolzin/pool-bot 2026.4.26 → 2026.4.27
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/build-info.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poolzin/pool-bot",
|
|
3
|
-
"version": "2026.4.
|
|
3
|
+
"version": "2026.4.27",
|
|
4
4
|
"description": "🎱 Pool Bot - AI assistant with PLCODE integrations",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -380,6 +380,9 @@
|
|
|
380
380
|
"node-llama-cpp",
|
|
381
381
|
"protobufjs",
|
|
382
382
|
"sharp"
|
|
383
|
-
]
|
|
383
|
+
],
|
|
384
|
+
"patchedDependencies": {
|
|
385
|
+
"@mariozechner/pi-ai@0.52.12": "patches/@mariozechner__pi-ai.patch"
|
|
386
|
+
}
|
|
384
387
|
}
|
|
385
388
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
diff --git a/dist/providers/anthropic.js b/dist/providers/anthropic.js
|
|
2
|
+
index abc1234..def5678 100644
|
|
3
|
+
--- a/dist/providers/anthropic.js
|
|
4
|
+
+++ b/dist/providers/anthropic.js
|
|
5
|
+
@@ -690,6 +690,8 @@
|
|
6
|
+
return "error";
|
|
7
|
+
case "pause_turn": // Stop is good enough -> resubmit
|
|
8
|
+
return "stop";
|
|
9
|
+
+ case "model_context_window_exceeded": // Context window exceeded - trigger compaction
|
|
10
|
+
+ return "length";
|
|
11
|
+
case "stop_sequence":
|
|
12
|
+
return "stop"; // We don't supply stop sequences, so this should never happen
|
|
13
|
+
case "sensitive": // Content flagged by safety filters (not yet in SDK types)
|