├── .github └── workflows │ └── publish_pypi.yml ├── .gitignore ├── LICENSE ├── README.md ├── browserbase ├── __init__.py └── helpers │ ├── anthropic.py │ └── gpt4.py ├── logo ├── dark.svg └── light.svg ├── pyproject.toml └── tests └── lib.py /.github/workflows/publish_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserbase/python-sdk/HEAD/.github/workflows/publish_pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserbase/python-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserbase/python-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserbase/python-sdk/HEAD/README.md -------------------------------------------------------------------------------- /browserbase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserbase/python-sdk/HEAD/browserbase/__init__.py -------------------------------------------------------------------------------- /browserbase/helpers/anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserbase/python-sdk/HEAD/browserbase/helpers/anthropic.py -------------------------------------------------------------------------------- /browserbase/helpers/gpt4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserbase/python-sdk/HEAD/browserbase/helpers/gpt4.py -------------------------------------------------------------------------------- /logo/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserbase/python-sdk/HEAD/logo/dark.svg -------------------------------------------------------------------------------- /logo/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserbase/python-sdk/HEAD/logo/light.svg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserbase/python-sdk/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserbase/python-sdk/HEAD/tests/lib.py --------------------------------------------------------------------------------