tinyhumansai/openhuman · error
browser.backend='auto' needs Playwright, agent-browser tool,
Error message
browser.backend='auto' needs Playwright, agent-browser tool, browser-native, or valid computer-use sidecar (error: {err}) What it means
Final fallback arm of auto resolution when the build lacks browser-native but computer-use probing produced an error: it lists every remaining option (Playwright, agent-browser, computer-use sidecar) with the underlying probe error attached for diagnosis.
Source
Thrown at src/openhuman/tools/impl/browser/browser.rs:270
let computer_use_err = match self.computer_use_available() {
Ok(true) => return Ok(ResolvedBackend::ComputerUse),
Ok(false) => None,
Err(err) => Some(err.to_string()),
};
if Self::rust_native_compiled() {
if let Some(err) = computer_use_err {
anyhow::bail!(
"browser.backend='auto' found no usable backend (playwright missing, agent-browser missing, rust-native unavailable, computer-use invalid: {err})"
);
}
anyhow::bail!(
"browser.backend='auto' found no usable backend (playwright missing, agent-browser missing, rust-native unavailable, computer-use sidecar unreachable)"
)
}
if let Some(err) = computer_use_err {
anyhow::bail!(
"browser.backend='auto' needs Playwright, agent-browser tool, browser-native, or valid computer-use sidecar (error: {err})"
);
}
anyhow::bail!(
"browser.backend='auto' needs Playwright, agent-browser tool, browser-native, or computer-use sidecar"
)
}
}
}
/// Validate URL against allowlist
fn validate_url(&self, url: &str) -> anyhow::Result<()> {
let url = url.trim();
if url.is_empty() {
anyhow::bail!("URL cannot be empty");
}View on GitHub (pinned to 7491200858)
Solutions
- Install Playwright or the agent-browser tool.
- Fix the computer-use sidecar error included in the message.
- Rebuild with browser-native for the rust backend.
Defensive patterns
Strategy: fallback
When it happens
Trigger: Thrown at src/openhuman/tools/impl/browser/browser.rs:270 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of tinyhumansai/openhuman@7491200858 (2026-08-17).
Data as JSON: /api/errors/93598b0c84a3d74c.
Report an issue: GitHub.