Files
gnome-jarvis/browser-use/startpage.cjs
T
snxraven aa06c71fe1
Rolling release / release (push) Failing after 1m46s
obsidian
2026-09-14 11:24:10 -04:00

15 lines
510 B
JavaScript

/** Default search for the Jarvis Chromium window and the agent. */
const SEARCH_HOME = 'https://duckduckgo.com/';
function duckduckgoSearchUrl(query) {
return 'https://duckduckgo.com/?q=' + encodeURIComponent(String(query || '').trim());
}
function isBlankStart(url) {
const value = String(url || '');
return !value || value === 'about:blank' || value.startsWith('chrome://newtab') || value.startsWith('chrome://new-tab-page');
}
module.exports = { SEARCH_HOME, duckduckgoSearchUrl, isBlankStart };