Skip to content

Commit 4b2e71f

Browse files
authored
Merge pull request #67 from SentienceAPI/renamed
renamed pypi name
2 parents 48c52e7 + d9e65fb commit 4b2e71f

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ jobs:
7272
tag_name: v${{ steps.version.outputs.version }}
7373
name: Release v${{ steps.version.outputs.version }}
7474
body: |
75-
Release v${{ steps.version.outputs.version }} of sentience-python
75+
Release v${{ steps.version.outputs.version }} of sentienceapi
7676
7777
## Installation
7878
```bash
79-
pip install sentience-python==${{ steps.version.outputs.version }}
79+
pip install sentienceapi==${{ steps.version.outputs.version }}
8080
```
8181
draft: false
8282
prerelease: false

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ The SDK is open under ELv2; the core semantic geometry and reliability logic run
55
## Installation
66

77
```bash
8-
pip install -e .
8+
# Install from PyPI
9+
pip install sentienceapi
910

1011
# Install Playwright browsers (required)
1112
playwright install chromium
@@ -16,6 +17,11 @@ pip install anthropic # For Claude models
1617
pip install transformers torch # For local LLMs
1718
```
1819

20+
**For local development:**
21+
```bash
22+
pip install -e .
23+
```
24+
1925
## Quick Start: Choose Your Abstraction Level
2026

2127
Sentience SDK offers **three abstraction levels** - use what fits your needs:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=61.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "sentience-python"
6+
name = "sentienceapi"
77
version = "0.90.0"
88
description = "Python SDK for Sentience AI Agent Browser Automation"
99
readme = "README.md"

0 commit comments

Comments
 (0)