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
2 changes: 1 addition & 1 deletion examples/browser-use/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sentience + browser-use Integration

This directory contains examples for integrating [Sentience](https://github.com/SentienceAPI/sentience-python) with [browser-use](https://github.com/browser-use/browser-use).
This directory contains examples for integrating [Sentience](https://github.com/Predicate-Labs/sdk-python) with [browser-use](https://github.com/browser-use/browser-use).

## What is browser-use?

Expand Down
12 changes: 12 additions & 0 deletions predicate/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1355,3 +1355,15 @@ async def from_page(
await asyncio.sleep(0.5)

return instance


# -----------------------------------------------------------------------------
# Predicate rebrand aliases
# -----------------------------------------------------------------------------
#
# The TypeScript SDK exposes `PredicateBrowser` as an alias of `SentienceBrowser`.
# For parity (and to make docs/examples clearer), we also expose aliases here.
#
# Keep the Sentience* names for backward compatibility.
PredicateBrowser = SentienceBrowser
AsyncPredicateBrowser = AsyncSentienceBrowser
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ dependencies = [
]

[project.urls]
Homepage = "https://github.com/SentienceAPI/sentience-python"
Repository = "https://github.com/SentienceAPI/sentience-python"
Issues = "https://github.com/SentienceAPI/sentience-python/issues"
Homepage = "https://github.com/Predicate-Labs/sdk-python"
Repository = "https://github.com/Predicate-Labs/sdk-python"
Issues = "https://github.com/Predicate-Labs/sdk-python/issues"

[project.scripts]
predicate = "predicate.cli:main"
Expand Down
Loading