release: 3.19.3#333
Merged
stainless-app[bot] merged 2 commits intoApr 3, 2026
Merged
Conversation
Contributor
Author
|
🧪 Testing To try out this version of the SDK: Expires at: Sun, 03 May 2026 19:21:14 GMT |
There was a problem hiding this comment.
No issues found across 7 files
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Architecture diagram
sequenceDiagram
participant User as User Application
participant SDK as Stagehand Python SDK
participant API as Stagehand API (v3)
participant LLM as LLM Provider (OpenAI)
Note over User,LLM: Session Initialization Flow
User->>SDK: sessions.start(model_name="openai/gpt-5.4-mini")
SDK->>API: CHANGED: POST /v1/sessions/start
Note right of SDK: Request body includes updated<br/>default model: gpt-5.4-mini
API-->>SDK: Session Configuration
SDK-->>User: Session Object
Note over User,LLM: Task Execution Flow (Act / Extract / Observe)
User->>SDK: sessions.act(instruction, options)
SDK->>API: POST /v1/sessions/{id}/act
API->>LLM: CHANGED: Forward instruction to model
Note right of API: Uses openai/gpt-5.4-mini<br/>as the execution engine
alt Success
LLM-->>API: Inference results (actions/data)
API-->>SDK: ActionResponse
SDK-->>User: Success result
else Model Error / Timeout
LLM-->>API: Error
API-->>SDK: APIStatusError (500)
SDK->>SDK: CHANGED: Execute retry logic
SDK-->>User: Throw Exception
end
Note over SDK,API: Version Header: X-Stainless-Package-Version: 3.20.0
Contributor
Author
Release version edited manuallyThe Pull Request version has been manually set to If you instead want to use the version number |
d6ababd to
44f0d00
Compare
pirate
approved these changes
Apr 3, 2026
Contributor
Author
|
🤖 Release is at https://github.com/browserbase/stagehand-python/releases/tag/v3.19.3 🌻 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automated Release PR
3.19.3 (2026-04-03)
Full Changelog: v3.19.2...v3.19.3
Features
This pull request is managed by Stainless's GitHub App.
The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.
For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.
🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions