Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/dog-of-interesting-energy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dragon-of-fabulous-persistence.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/feathered-singing-duck.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gorilla-of-strongest-novelty.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nostalgic-tireless-kestrel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silkworm-of-regular-downpour.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spectral-labrador-of-tolerance.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/towering-organic-grouse.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/vegan-intrepid-mustang.md

This file was deleted.

14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Stagehand Python Changelog

## 0.5.1

### Patch Changes

[#183](https://github.com/browserbase/stagehand-python/pull/183) [`6f72281`](https://github.com/browserbase/stagehand-python/commit/6f72281) Thanks @shubh24 and @miguelg719! - Fixing downloads behavior for use_api=false
[#132](https://github.com/browserbase/stagehand-python/pull/132) [`edc57ac`](https://github.com/browserbase/stagehand-python/commit/edc57ac) Thanks @sanveer-osahan and @miguelg719! - Add LLM customization support (eg. api_base)
[#179](https://github.com/browserbase/stagehand-python/pull/179) [`51ca053`](https://github.com/browserbase/stagehand-python/commit/51ca053) Thanks @miguelg719! - Fix max_steps parsing for agent execute options
[#176](https://github.com/browserbase/stagehand-python/pull/176) [`d95974a`](https://github.com/browserbase/stagehand-python/commit/d95974a) Thanks @miguelg719! - Fix stagehand.metrics on env:BROWSERBASE
[#88](https://github.com/browserbase/stagehand-python/pull/88) [`021c946`](https://github.com/browserbase/stagehand-python/commit/021c946) Thanks @filip-michalsky! - added regression tests
[#161](https://github.com/browserbase/stagehand-python/pull/161) [`f68e86c`](https://github.com/browserbase/stagehand-python/commit/f68e86c) Thanks @arunpatro, @miguelg719 and Filip Michalsky! - Multi-tab support
[#181](https://github.com/browserbase/stagehand-python/pull/181) [`1bef512`](https://github.com/browserbase/stagehand-python/commit/1bef512) Thanks @miguelg719! - Fix openai-litellm dependency bug
[#177](https://github.com/browserbase/stagehand-python/pull/177) [`36ba981`](https://github.com/browserbase/stagehand-python/commit/36ba981) Thanks @miguelg719! - Fix temperature setting for GPT-5 family of models
[#174](https://github.com/browserbase/stagehand-python/pull/174) [`2e3eb1a`](https://github.com/browserbase/stagehand-python/commit/2e3eb1a) Thanks @miguelg719! - Added frame_id_map to support multi-tab handling on API

## 0.5.0

### Minor Changes
Expand Down
16 changes: 2 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,12 @@ build-backend = "setuptools.build_meta"

[project]
name = "stagehand"
version = "0.5.0"
version = "0.5.1"
description = "Python SDK for Stagehand"
readme = "README.md"
classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",]
requires-python = ">=3.9"
dependencies = [
"httpx>=0.24.0",
"python-dotenv>=1.0.0",
"pydantic>=1.10.0",
"playwright>=1.42.1",
"requests>=2.31.0",
"browserbase>=1.4.0",
"rich>=13.7.0",
"openai>=1.83.0,<1.99.6",
"anthropic>=0.51.0",
"litellm>=1.72.0,<1.75.0",
"nest-asyncio>=1.6.0",
]
dependencies = [ "httpx>=0.24.0", "python-dotenv>=1.0.0", "pydantic>=1.10.0", "playwright>=1.42.1", "requests>=2.31.0", "browserbase>=1.4.0", "rich>=13.7.0", "openai>=1.83.0,<1.99.6", "anthropic>=0.51.0", "litellm>=1.72.0,<1.75.0", "nest-asyncio>=1.6.0",]
[[project.authors]]
name = "Browserbase, Inc."
email = "support@browserbase.com"
Expand Down