Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
e8867e1
Stagehand Canonical Release (#277)
miguelg719 Jan 13, 2026
79578dd
release: 0.4.0 (#281)
monadoid Jan 13, 2026
d48e7a3
readme fix
monadoid Jan 13, 2026
41926c7
docs: refresh README for release
monadoid Jan 13, 2026
77ab9a0
release: 3.4.1 (#283)
monadoid Jan 13, 2026
ba1b46d
Updated workflow to include sea binary
monadoid Jan 13, 2026
d7cce86
Merge remote-tracking branch 'origin/main'
monadoid Jan 13, 2026
1e51dd8
release: 3.4.2 (#284)
stainless-app[bot] Jan 13, 2026
301147c
chore: force-include SEA binaries in wheel
monadoid Jan 13, 2026
04d584e
release: 3.4.3 (#286)
stainless-app[bot] Jan 13, 2026
71abdc6
chore: publish-pypi lint fix
monadoid Jan 13, 2026
32e040b
Merge remote-tracking branch 'origin/main'
monadoid Jan 13, 2026
f4d515c
release: 3.4.4 (#288)
stainless-app[bot] Jan 13, 2026
5ed0e5f
chore: windows logging/build fix
monadoid Jan 13, 2026
f9220ed
release: 3.4.5 (#290)
stainless-app[bot] Jan 13, 2026
5235658
chore: remove duplicate .keep files for pypi publish step fix
monadoid Jan 13, 2026
2f3c6ab
Merge remote-tracking branch 'origin/main'
monadoid Jan 13, 2026
92bc49a
release: 3.4.6 (#292)
stainless-app[bot] Jan 13, 2026
2cb0c28
Add pydoll frameid example (#293)
monadoid Jan 15, 2026
20f4704
release: 3.4.7 (#294)
stainless-app[bot] Jan 15, 2026
74cb7fb
Samfinton/stg 1147 python sdk rename create() to start() (#295)
monadoid Jan 16, 2026
3bd7660
CI cleanup + docs (#298)
monadoid Jan 16, 2026
5954b85
release: 3.4.8 (#302)
stainless-app[bot] Jan 27, 2026
fd7bffe
release: 3.5.0 (#303)
stainless-app[bot] Jan 29, 2026
a30258c
release: 3.6.0 (#308)
stainless-app[bot] Feb 25, 2026
7f7a3aa
release: 3.7.0 (#312)
stainless-app[bot] Mar 24, 2026
dfc4a7a
release: 3.18.0 (#322)
stainless-app[bot] Mar 25, 2026
763131a
release: 3.19.0 (#325)
stainless-app[bot] Mar 27, 2026
e22ed1b
[fix] dev tag for sea binary should never be used (#326)
pirate Mar 31, 2026
f9cc8b2
release: 3.19.1 (#327)
stainless-app[bot] Mar 31, 2026
99b6033
Fix `Client(model_api_key=...)` and remove `OPENAI_API_KEY`/`MODEL_AP…
pirate Apr 1, 2026
380f5e0
Support Pydantic models on Extract (#330)
miguelg719 Apr 2, 2026
3cbbcfc
Centralize custom code (#332)
pirate Apr 3, 2026
df277b8
release: 3.19.2 (#329)
stainless-app[bot] Apr 3, 2026
083244c
release: 3.19.3 (#333)
stainless-app[bot] Apr 3, 2026
b43ecf9
More custom code cleanup (#334)
pirate Apr 3, 2026
86cb2c4
release: 3.19.4 (#336)
stainless-app[bot] Apr 3, 2026
8c62efc
Remove unnecessary custom code (#337)
pirate Apr 3, 2026
3e21a5b
release: 3.19.5 (#338)
stainless-app[bot] Apr 3, 2026
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
11 changes: 0 additions & 11 deletions .changeset/README.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/config.json

This file was deleted.

8 changes: 8 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
ARG VARIANT="3.9"
FROM mcr.microsoft.com/vscode/devcontainers/python:0-${VARIANT}

USER vscode

COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/

RUN echo "[[ -d .venv ]] && source .venv/bin/activate || export PATH=\$PATH" >> /home/vscode/.bashrc
43 changes: 43 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "Debian",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},

"postStartCommand": "uv sync --all-extras",

"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
],
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": ".venv/bin/python",
"python.defaultInterpreterPath": ".venv/bin/python",
"python.typeChecking": "basic",
"terminal.integrated.env.linux": {
"PATH": "${env:PATH}"
}
}
}
},
"features": {
"ghcr.io/devcontainers/features/node:1": {}
}

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
7 changes: 3 additions & 4 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
MODEL_API_KEY = "your-favorite-llm-api-key"
BROWSERBASE_API_KEY = "browserbase-api-key"
BROWSERBASE_PROJECT_ID = "browserbase-project-id"
STAGEHAND_ENV= "LOCAL or BROWSERBASE"
BROWSERBASE_API_KEY=bb_live_your_api_key_here
BROWSERBASE_PROJECT_ID=your-bb-project-uuid-here
MODEL_API_KEY=sk-proj-your-llm-api-key-here
73 changes: 0 additions & 73 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

23 changes: 0 additions & 23 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

5 changes: 0 additions & 5 deletions .github/pull_request_template

This file was deleted.

142 changes: 0 additions & 142 deletions .github/workflows/changesets.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/check-changeset.yml

This file was deleted.

Loading