Files
browser-use/docs/customize/tools/remove.mdx
Magnus Müller 82b241ddbb Linter new line
2025-08-26 18:13:11 -07:00

15 lines
255 B
Plaintext

---
title: "Remove Tools"
description: "You can exclude default tools:"
icon: "minus"
mode: "wide"
---
```python
from browser_use import Tools
tools = Tools(exclude_actions=['search_google', 'wait'])
agent = Agent(task='...', llm=llm, tools=tools)
```