| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 0.11.0 - Skills source code.tar.gz | 2025-12-10 | 4.8 MB | |
| 0.11.0 - Skills source code.zip | 2025-12-10 | 5.1 MB | |
| README.md | 2025-12-10 | 2.0 kB | |
| Totals: 3 Items | 9.9 MB | 9 | |
:::python
from browser_use import Agent, ChatBrowserUse
agent = Agent(
task='Your task',
skills=['skill-uuid-1', 'skill-uuid-2'], # Specific skills (recommended)
# or
# skills=['*'], # All skills
llm=ChatBrowserUse()
)
await agent.run()
What's Changed
- Add cloud by @mertunsall in https://github.com/browser-use/browser-use/pull/3692
- Add Mistral chat provider with schema sanitization and presets by @MagellaX in https://github.com/browser-use/browser-use/pull/3679
- change mistral model by @mertunsall in https://github.com/browser-use/browser-use/pull/3693
- get rid of force by @mertunsall in https://github.com/browser-use/browser-use/pull/3695
- fix example by @mertunsall in https://github.com/browser-use/browser-use/pull/3699
- Bugfix to [#3702] by @amascolo in https://github.com/browser-use/browser-use/pull/3703
- fix the supported model broken link by @ai-naymul in https://github.com/browser-use/browser-use/pull/3711
- feat: added fallback llm support by @sauravpanda in https://github.com/browser-use/browser-use/pull/3712
- Check agent urls in docs by @MagMueller in https://github.com/browser-use/browser-use/pull/3714
- AI: add ai_step to replace extract_content on rerun by @sauravpanda in https://github.com/browser-use/browser-use/pull/3696
- faster scroll by @mertunsall in https://github.com/browser-use/browser-use/pull/3732
- added gemini-3-pro-preview to verified models by @sauravpanda in https://github.com/browser-use/browser-use/pull/3738
- fix structured output when tools is passeD by @mertunsall in https://github.com/browser-use/browser-use/pull/3739
- Skills Integration by @gregpr07 in https://github.com/browser-use/browser-use/pull/3724
New Contributors
- @amascolo made their first contribution in https://github.com/browser-use/browser-use/pull/3703
Full Changelog: https://github.com/browser-use/browser-use/compare/0.10.1...0.11.0