visionclaw 0.1.87 → 0.1.89
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/CHANGELOG.md +13 -0
- package/dist/agent/session.d.ts +1 -1
- package/dist/agent/session.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## [0.1.89](https://github.com/babelcloud/visionclaw/compare/v0.1.88...v0.1.89) (2026-03-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **session:** adjust COMPACT_USED_PCT_THRESHOLD to improve resource management ([3b2bda9](https://github.com/babelcloud/visionclaw/commit/3b2bda959b5585084787dc0db97cd2defcd0bb8d))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [0.1.88](https://github.com/babelcloud/visionclaw/compare/v0.1.87...v0.1.88) (2026-03-05)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
1
14
|
## [0.1.87](https://github.com/babelcloud/visionclaw/compare/v0.1.86...v0.1.87) (2026-03-05)
|
|
2
15
|
|
|
3
16
|
|
package/dist/agent/session.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import type { SessionMode } from "./mailbox.js";
|
|
|
4
4
|
import type { ToolServerFactory } from "../tools/index.js";
|
|
5
5
|
import type { ScreenshotInjector } from "./screenshot-injector.js";
|
|
6
6
|
export type { SDKMessage, SDKUserMessage };
|
|
7
|
-
export declare const COMPACT_USED_PCT_THRESHOLD = 0.
|
|
7
|
+
export declare const COMPACT_USED_PCT_THRESHOLD = 0.5;
|
|
8
8
|
export declare const MAX_BASE64_IMAGE_BLOCKS = 10;
|
|
9
9
|
/**
|
|
10
10
|
* Wraps the V1 query() API with a long-lived async generator for streaming
|
package/dist/agent/session.js
CHANGED
|
@@ -9,7 +9,7 @@ import fs from "fs";
|
|
|
9
9
|
import { ensureBrowser } from "./browser-launcher.js";
|
|
10
10
|
import * as imagePrunerUnTyped from "./image-pruner.js";
|
|
11
11
|
const imagePruner = imagePrunerUnTyped;
|
|
12
|
-
export const COMPACT_USED_PCT_THRESHOLD = 0.
|
|
12
|
+
export const COMPACT_USED_PCT_THRESHOLD = 0.5;
|
|
13
13
|
export const MAX_BASE64_IMAGE_BLOCKS = 10;
|
|
14
14
|
export class AgentSession {
|
|
15
15
|
config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "visionclaw",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.89",
|
|
4
4
|
"description": "A personal assistant agent that runs on your desktop, receives commands from messaging channels, and executes tasks autonomously.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|