Files
browser-use/docs/customize/tools/remove.mdx
2025-08-26 11:30:39 -07:00

16 lines
278 B
Plaintext

---
title: "Remove Tools"
description: "You can exclude default tools when creating a 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)
```