From 5d64b96588547dc4ee02261282df80336bb81c77 Mon Sep 17 00:00:00 2001 From: SentienceDEV Date: Thu, 12 Feb 2026 18:26:58 -0800 Subject: [PATCH] updated repo link --- examples/browser-use/README.md | 2 +- predicate/browser.py | 12 ++++++++++++ pyproject.toml | 6 +++--- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/examples/browser-use/README.md b/examples/browser-use/README.md index a2dd2f8..1454d56 100644 --- a/examples/browser-use/README.md +++ b/examples/browser-use/README.md @@ -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? diff --git a/predicate/browser.py b/predicate/browser.py index 9b931a0..d0273b0 100644 --- a/predicate/browser.py +++ b/predicate/browser.py @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 728cda4..13d6c42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"