open-agents-ai 0.187.217 → 0.187.219
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 +4 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -249789,7 +249789,7 @@ var init_browser_action = __esm({
|
|
|
249789
249789
|
return {
|
|
249790
249790
|
success: true,
|
|
249791
249791
|
output: `Screenshot captured (${width}x${height}, downscaled for LLM). Base64 length: ${b64.length} chars.
|
|
249792
|
-
[IMAGE_BASE64:${mimeType}:${b64
|
|
249792
|
+
[IMAGE_BASE64:${mimeType}:${b64}]`,
|
|
249793
249793
|
durationMs: Date.now() - start2
|
|
249794
249794
|
};
|
|
249795
249795
|
}
|
|
@@ -250271,7 +250271,7 @@ var init_playwright_browser = __esm({
|
|
|
250271
250271
|
}
|
|
250272
250272
|
if (b64) {
|
|
250273
250273
|
return ok(`Screenshot saved to ${filePath} (downscaled for LLM).
|
|
250274
|
-
[IMAGE_BASE64:${mimeType}:${b64
|
|
250274
|
+
[IMAGE_BASE64:${mimeType}:${b64}]`, start2);
|
|
250275
250275
|
}
|
|
250276
250276
|
return ok(`Screenshot saved to ${filePath}`, start2);
|
|
250277
250277
|
}
|
|
@@ -291721,11 +291721,9 @@ function tuiSelect(opts) {
|
|
|
291721
291721
|
const first2 = findSelectable(0, 1);
|
|
291722
291722
|
cursor = first2 >= 0 ? first2 : 0;
|
|
291723
291723
|
}
|
|
291724
|
-
const reservedTopBottom = 0;
|
|
291725
291724
|
const hasCrumbs = opts.breadcrumbs && opts.breadcrumbs.length > 0;
|
|
291726
|
-
const selectChrome = (hasCrumbs ?
|
|
291727
|
-
|
|
291728
|
-
let maxVisible = opts.maxVisible ?? Math.max(3, contentArea - selectChrome);
|
|
291725
|
+
const selectChrome = (hasCrumbs ? 9 : 8) + 1;
|
|
291726
|
+
let maxVisible = opts.maxVisible ?? Math.max(3, termRows() - selectChrome);
|
|
291729
291727
|
let scrollOffset = 0;
|
|
291730
291728
|
let lastRenderedLines = 0;
|
|
291731
291729
|
return new Promise((resolve39) => {
|
package/package.json
CHANGED