Pass model to select a model:
| Model | API String | Input (per 1M tokens) | Output (per 1M tokens) |
|---|
| Claude Sonnet 4.6 | claude-sonnet-4-6 | $3.60 | $18.00 |
| Claude Opus 4.6 | claude-opus-4-6 | $6.00 | $30.00 |
| Gemini 3 Flash Preview | gemini-3-flash-preview | $0.60 | $3.60 |
We recommend Claude Sonnet 4.6 (claude-sonnet-4-6). It’s the model we optimize for the most right now.
from browser_use_sdk.v3 import AsyncBrowserUse
client = AsyncBrowserUse()
result = await client.run(
"List the top 20 posts on Hacker News today with their points",
model="claude-sonnet-4-6",
)
print(result.output)