v0.20.1
feder-cr/AIHawkv0.20.1Sep 8, 2026by feder-cr
AI Summary
This release optimizes the live view by removing unnecessary page title fetching during frame updates, resulting in significant latency reduction. It refines session saving logic to use URLs instead of full tab descriptions to minimize round trips.
Key Highlights
- Removed page title fetching from live view
- Optimized session saving using URLs instead of full descriptions
- Performance improvement: 8.3ms vs 29.5ms per frame request
- Reduced round trips for tab descriptions
New Features
- Improved live view latency performance
- Optimized session saving mechanism
- Reduced network overhead per frame request
Full Release Notes
The live view was fetching a page title on every frame. Every command notes where a browser is, so a session can be saved where it was, and it did that by asking for each tab's whole description - title included, which costs a round trip per tab while the url does not. Measured A-B-A on one bench, median of twenty frame requests: 8.3 ms with urls only, 29.5 ms with the title, 6.8 ms with urls again.