deeprails 0.3.1__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of deeprails might be problematic. Click here for more details.
- {deeprails-0.3.1 → deeprails-0.3.2}/PKG-INFO +3 -3
- {deeprails-0.3.1 → deeprails-0.3.2}/README.md +2 -2
- {deeprails-0.3.1 → deeprails-0.3.2}/deeprails/client.py +1 -1
- {deeprails-0.3.1 → deeprails-0.3.2}/pyproject.toml +1 -1
- {deeprails-0.3.1 → deeprails-0.3.2}/LICENSE +0 -0
- {deeprails-0.3.1 → deeprails-0.3.2}/deeprails/__init__.py +0 -0
- {deeprails-0.3.1 → deeprails-0.3.2}/deeprails/exceptions.py +0 -0
- {deeprails-0.3.1 → deeprails-0.3.2}/deeprails/schemas.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: deeprails
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Python SDK for interacting with the DeepRails API
|
|
5
5
|
Project-URL: Homepage, https://deeprails.com
|
|
6
6
|
Project-URL: Documentation, https://docs.deeprails.com
|
|
@@ -35,9 +35,9 @@ Description-Content-Type: text/markdown
|
|
|
35
35
|
|
|
36
36
|
# DeepRails Python SDK
|
|
37
37
|
|
|
38
|
-
Official Python SDK for interacting with the DeepRails API
|
|
38
|
+
Official Python SDK for interacting with the DeepRails API v2.0.
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
DeepRails is a powerful developer tool with a comprehesive set of adaptive and accurate guardrails to protect against LLM hallucinations - deploy our Evaluate, Monitor, and Defend APIs in <15 mins for the best out-of-the-box guardrails in the market.
|
|
41
41
|
|
|
42
42
|
## Installation
|
|
43
43
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# DeepRails Python SDK
|
|
2
2
|
|
|
3
|
-
Official Python SDK for interacting with the DeepRails API
|
|
3
|
+
Official Python SDK for interacting with the DeepRails API v2.0.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
DeepRails is a powerful developer tool with a comprehesive set of adaptive and accurate guardrails to protect against LLM hallucinations - deploy our Evaluate, Monitor, and Defend APIs in <15 mins for the best out-of-the-box guardrails in the market.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -24,7 +24,7 @@ class DeepRails:
|
|
|
24
24
|
self._headers = {
|
|
25
25
|
"Authorization": f"Bearer {token}",
|
|
26
26
|
"Content-Type": "application/json",
|
|
27
|
-
"User-Agent": "deeprails-python-sdk/0.3.
|
|
27
|
+
"User-Agent": "deeprails-python-sdk/0.3.2"
|
|
28
28
|
}
|
|
29
29
|
self._client = httpx.Client(base_url=self._base_url, headers=self._headers, timeout=30.0)
|
|
30
30
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "deeprails"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.2"
|
|
8
8
|
description = "Python SDK for interacting with the DeepRails API"
|
|
9
9
|
readme = {file = "README.md", content-type = "text/markdown"}
|
|
10
10
|
authors = [{name = "Neil Mate", email = "support@deeprails.ai"}]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|