Python SDK for Sorin — AI agent governance and security
Project description
sorin-sdk
Python SDK for the Sorin agent authorization and observability platform.
Install
pip install sorin-sdk
For local development:
pip install -e ./python
Usage
LLM Inference (Anthropic)
from sorin import SorinLLM
client = SorinLLM(agent_key="your-agent-key")
response = client.messages.create(
model="claude-sonnet-4-20250514",
max_tokens=100,
messages=[{"role": "user", "content": "Hello"}]
)
LLM Inference (OpenAI)
from sorin import SorinOpenAI
client = SorinOpenAI(agent_key="your-agent-key")
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello"}]
)
Agent Actions (GitHub, etc.)
from sorin import SorinClient
sorin = SorinClient(agent_key="your-agent-key")
# Check authorization before acting (reasoning is optional)
auth = sorin.authorize(
action="comment-pr",
connector="github",
resource_id="org/repo#42",
reasoning="Adding a review comment to summarize CI results",
)
if auth.get("allowed"):
# Perform the action
...
else:
print(f"Blocked: {auth.get('reason')}")
MCP Server (Claude Code & Cursor)
The package ships a sorin CLI that installs the Sorin MCP server into your AI coding tool:
# Claude Code — registers the server automatically
sorin mcp install --key <your-sorin-agent-key>
# Cursor — prints JSON to paste into ~/.cursor/mcp.json
sorin mcp install --key <your-sorin-agent-key> --cursor
Restart your editor after installing to connect to the server.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sorin_sdk-0.1.4.tar.gz
(5.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sorin_sdk-0.1.4.tar.gz.
File metadata
- Download URL: sorin_sdk-0.1.4.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72296bdba5fdc407042a56d18f3c9eaf1fa596306bae33da95720e225f9d9375
|
|
| MD5 |
fc84775e6fea49f25f4ceec12d1821bf
|
|
| BLAKE2b-256 |
f15b371c97b2497a733d7ae845d63466cb6cda7c83d69131a899f80607187d57
|
File details
Details for the file sorin_sdk-0.1.4-py3-none-any.whl.
File metadata
- Download URL: sorin_sdk-0.1.4-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15b3ea9b42be7ffa2a31ef17748d9b3dc9c6a26b6d0c77e910bbf3a4aa5fb37f
|
|
| MD5 |
c81fc3d75d58b539a39565ff7722b3b1
|
|
| BLAKE2b-256 |
e630e75c41cd2ee0f620a8eafb5303004f6c57274a40e465aacc956c04124ff5
|