mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
15 lines
255 B
Plaintext
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)
|
|
```
|