diff --git a/.changeset/horned-giga-cockatoo.md b/.changeset/horned-giga-cockatoo.md deleted file mode 100644 index ba6f1d7a..00000000 --- a/.changeset/horned-giga-cockatoo.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"stagehand": patch ---- - -Added support for Gemini Computer Use models diff --git a/.changeset/whispering-brave-potoo.md b/.changeset/whispering-brave-potoo.md deleted file mode 100644 index e7b37afd..00000000 --- a/.changeset/whispering-brave-potoo.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"stagehand": patch ---- - -Make litellm client async diff --git a/CHANGELOG.md b/CHANGELOG.md index c130c477..1af31caa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Stagehand Python Changelog +## 0.5.4 + +### Patch Changes + +[#205](https://github.com/browserbase/stagehand-python/pull/205) [`3bcdd05`](https://github.com/browserbase/stagehand-python/commit/3bcdd05) Thanks @derekmeegan! - Make litellm client async +[#213](https://github.com/browserbase/stagehand-python/pull/213) [`1d0577d`](https://github.com/browserbase/stagehand-python/commit/1d0577d) Thanks @miguelg719! - Added support for Gemini Computer Use models + ## 0.5.3 ### Patch Changes diff --git a/pyproject.toml b/pyproject.toml index 1851c49f..898bff04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta" [project] name = "stagehand" -version = "0.5.3" +version = "0.5.4" 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.99.6", "anthropic>=0.51.0", "litellm>=1.72.0,<1.75.0", "nest-asyncio>=1.6.0", "google-genai>=1.40.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.99.6", "anthropic>=0.51.0", "litellm>=1.72.0,<1.75.0", "nest-asyncio>=1.6.0", "google-genai>=1.40.0",] [[project.authors]] name = "Browserbase, Inc." email = "support@browserbase.com"