Files
browser-use/docs/customize/tools/remove.mdx
2025-09-22 18:43:14 -07:00

15 lines
248 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', 'wait'])
agent = Agent(task='...', llm=llm, tools=tools)
```