You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add a process-tree profiler for macOS with CPU lifetime accounting, RSS/Chrome RSS, host-memory guard, and throughput
make the benchmark wrapper Bash 3 compatible and select the correct platform profiler
run local comparisons with an explicit system Chrome executable and accurate machine labels
continue evaluation/summarization when individual benchmark tasks fail, while still stopping on a resource guard
use Lexmount pagination totals when verifying active-session cleanup
Why
The 5090 host was not available, so the GPT-5.5 LexBench comparison needed a reproducible macOS fallback without presenting RSS as PSS or controller metrics as server-side utilization. The local adapter fix is already merged in browseruse-agent-bench#100.
Validation
10 tests passed
Ruff passed
Bash syntax check passed
real local LexBench task completed and judged successfully
paired 8-task smoke and paired 20-task pilot completed on both backends
c5 local pilot stayed above the 6 GiB host-memory guard
Python evaluates all arguments before calling a function, so len(response) is computed every timepagination is not None — even when page_size exists on the pagination object. If the real Lexmount SDK response doesn't implement __len__, this raises TypeError on every paginated list call.
The test masks this because FakeResponse defines __len__, but the real response object likely doesn't.
Fix: don't use len(response) as an eager default. Either fall back to a safe sentinel or compute it lazily:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
Why
The 5090 host was not available, so the GPT-5.5 LexBench comparison needed a reproducible macOS fallback without presenting RSS as PSS or controller metrics as server-side utilization. The local adapter fix is already merged in
browseruse-agent-bench#100.Validation