Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Speed improvement3 #777

Merged
merged 6 commits into from
Feb 21, 2025
Merged

Speed improvement3 #777

merged 6 commits into from
Feb 21, 2025

Conversation

MagMueller
Copy link
Collaborator

No description provided.

@entelligence-ai-reviews

Walkthrough

The recent updates focus on enhancing performance and error handling across several files. In buildDomTree.js, a debug mode was introduced to track performance, along with caching mechanisms and refined logic for element highlighting. The service.py file now includes error handling for JavaScript evaluation and logs performance metrics conditionally based on the debug mode. Lastly, views.py was streamlined by removing unnecessary checks for processing text nodes.

Changes

File(s) Summary
browser_use/dom/buildDomTree.js Introduced debug mode for performance tracking, added caching for DOM operations, and refined element highlighting logic.
browser_use/dom/service.py Added error handling for JavaScript evaluation and conditional logging of performance metrics.
browser_use/dom/views.py Simplified condition for processing text nodes by removing redundant checks.
Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts below

Emoji Descriptions:

  • ⚠️ Potential Issue - May require further investigation.
  • 🔒 Security Vulnerability - Fix to ensure system safety.
  • 💻 Code Improvement - Suggestions to enhance code quality.
  • 🔨 Refactor Suggestion - Recommendations for restructuring code.
  • ℹ️ Others - General comments and information.

Interact with the Bot:

  • Send a message or request using the format:
    @bot + *your message*
Example: @bot Can you suggest improvements for this code?
  • Help the Bot learn by providing feedback on its responses.
    @bot + *feedback*
Example: @bot Do not comment on `save_auth` function !

Comment on lines +75 to 84
// Simple timing helper that only runs in debug mode
function measureTime(fn) {
if (!debugMode) return fn;
return function(...args) {
const start = performance.now();
const result = fn.apply(this, args);
const duration = performance.now() - start;
if (metricName !== 'buildDomTree') { // Skip buildDomTree as we measure it separately
PERF_METRICS.timings[metricName] += duration;
}
return result;
};
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The measureTime() function wraps functions but never records the measured duration, making performance tracking ineffective in debug mode

📝 Committable Code Suggestion

‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
// Simple timing helper that only runs in debug mode
function measureTime(fn) {
if (!debugMode) return fn;
return function(...args) {
const start = performance.now();
const result = fn.apply(this, args);
const duration = performance.now() - start;
if (metricName !== 'buildDomTree') { // Skip buildDomTree as we measure it separately
PERF_METRICS.timings[metricName] += duration;
}
return result;
};
}
// Simple timing helper that only runs in debug mode
function measureTime(fn) {
if (!debugMode) return fn;
return function(...args) {
const start = performance.now();
const result = fn.apply(this, args);
const duration = performance.now() - start;
console.debug(`Function execution time: ${duration}ms`);
return result;
};
}

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This gets logged outside the js file

Comment on lines +20 to +29
function pushTiming(type) {
TIMING_STACK[type] = TIMING_STACK[type] || [];
TIMING_STACK[type].push(performance.now());
}

function popTiming(type) {
const start = TIMING_STACK[type].pop();
const duration = performance.now() - start;
return duration;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pushTiming() is defined but never used, while popTiming('highlighting') is called in highlightElement(), potentially causing runtime errors

📝 Committable Code Suggestion

‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
function pushTiming(type) {
TIMING_STACK[type] = TIMING_STACK[type] || [];
TIMING_STACK[type].push(performance.now());
}
function popTiming(type) {
const start = TIMING_STACK[type].pop();
const duration = performance.now() - start;
return duration;
}
function pushTiming(type) {
TIMING_STACK[type] = TIMING_STACK[type] || [];
TIMING_STACK[type].push(performance.now());
}
function popTiming(type) {
if (!TIMING_STACK[type] || !TIMING_STACK[type].length) return 0;
const start = TIMING_STACK[type].pop();
const duration = performance.now() - start;
return duration;
}

@MagMueller MagMueller merged commit 06300c0 into main Feb 21, 2025
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants