rhesis 0.1.0__py3-none-any.whl → 0.6.3__py3-none-any.whl
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.
rhesis/__init__.py
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# Rhesis - Testing and validation platform for LLM applications
|
|
2
2
|
#
|
|
3
|
-
# This is the
|
|
4
|
-
# For the full SDK functionality, install rhesis-sdk:
|
|
3
|
+
# This is the umbrella package for Rhesis. It automatically includes rhesis-sdk.
|
|
5
4
|
#
|
|
6
|
-
#
|
|
5
|
+
# Usage:
|
|
6
|
+
# pip install rhesis # Core SDK
|
|
7
|
+
# pip install rhesis[penelope] # Multi-turn testing agent
|
|
8
|
+
# pip install rhesis[all] # Everything
|
|
7
9
|
#
|
|
8
10
|
# Documentation: https://docs.rhesis.ai
|
|
9
11
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rhesis
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.3
|
|
4
4
|
Summary: Rhesis - Testing and validation platform for LLM applications
|
|
5
5
|
Project-URL: Homepage, https://rhesis.ai
|
|
6
6
|
Project-URL: Repository, https://github.com/rhesis-ai/rhesis
|
|
@@ -20,6 +20,25 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
20
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
21
|
Classifier: Topic :: Software Development :: Testing
|
|
22
22
|
Requires-Python: >=3.10
|
|
23
|
+
Requires-Dist: rhesis-sdk>=0.6.0
|
|
24
|
+
Provides-Extra: all
|
|
25
|
+
Requires-Dist: rhesis-penelope>=0.1.0; extra == 'all'
|
|
26
|
+
Requires-Dist: rhesis-sdk[all]>=0.6.0; extra == 'all'
|
|
27
|
+
Provides-Extra: all-integrations
|
|
28
|
+
Requires-Dist: rhesis-penelope>=0.1.0; extra == 'all-integrations'
|
|
29
|
+
Requires-Dist: rhesis-sdk[all-integrations]>=0.6.0; extra == 'all-integrations'
|
|
30
|
+
Provides-Extra: autogen
|
|
31
|
+
Requires-Dist: rhesis-sdk[autogen]>=0.6.0; extra == 'autogen'
|
|
32
|
+
Provides-Extra: garak
|
|
33
|
+
Requires-Dist: rhesis-sdk[garak]>=0.6.0; extra == 'garak'
|
|
34
|
+
Provides-Extra: huggingface
|
|
35
|
+
Requires-Dist: rhesis-sdk[huggingface]>=0.6.0; extra == 'huggingface'
|
|
36
|
+
Provides-Extra: langchain
|
|
37
|
+
Requires-Dist: rhesis-sdk[langchain]>=0.6.0; extra == 'langchain'
|
|
38
|
+
Provides-Extra: langgraph
|
|
39
|
+
Requires-Dist: rhesis-sdk[langgraph]>=0.6.0; extra == 'langgraph'
|
|
40
|
+
Provides-Extra: penelope
|
|
41
|
+
Requires-Dist: rhesis-penelope>=0.1.0; extra == 'penelope'
|
|
23
42
|
Description-Content-Type: text/markdown
|
|
24
43
|
|
|
25
44
|
# Rhesis
|
|
@@ -34,16 +53,23 @@ Rhesis helps you build reliable AI applications through comprehensive testing, v
|
|
|
34
53
|
pip install rhesis
|
|
35
54
|
```
|
|
36
55
|
|
|
37
|
-
|
|
56
|
+
This installs the full Rhesis SDK. For additional features:
|
|
38
57
|
|
|
39
58
|
```bash
|
|
40
|
-
|
|
59
|
+
# Multi-turn testing agent
|
|
60
|
+
pip install rhesis[penelope]
|
|
61
|
+
|
|
62
|
+
# Framework integrations
|
|
63
|
+
pip install rhesis[langchain]
|
|
64
|
+
pip install rhesis[langgraph]
|
|
65
|
+
|
|
66
|
+
# Everything
|
|
67
|
+
pip install rhesis[all]
|
|
41
68
|
```
|
|
42
69
|
|
|
43
70
|
## Quick Start
|
|
44
71
|
|
|
45
72
|
```python
|
|
46
|
-
# After installing rhesis-sdk
|
|
47
73
|
from rhesis.sdk import RhesisClient
|
|
48
74
|
|
|
49
75
|
client = RhesisClient()
|
|
@@ -61,8 +87,22 @@ The Rhesis ecosystem includes:
|
|
|
61
87
|
|
|
62
88
|
| Package | Description |
|
|
63
89
|
|---------|-------------|
|
|
64
|
-
| `rhesis` |
|
|
65
|
-
| `rhesis-sdk` |
|
|
90
|
+
| `rhesis` | Umbrella package (this package) - installs rhesis-sdk |
|
|
91
|
+
| `rhesis-sdk` | Core SDK for testing and validation |
|
|
92
|
+
| `rhesis-penelope` | Multi-turn testing agent |
|
|
93
|
+
|
|
94
|
+
## Optional Extras
|
|
95
|
+
|
|
96
|
+
| Extra | Description |
|
|
97
|
+
|-------|-------------|
|
|
98
|
+
| `penelope` | Multi-turn conversational testing agent |
|
|
99
|
+
| `langchain` | LangChain integration |
|
|
100
|
+
| `langgraph` | LangGraph integration |
|
|
101
|
+
| `autogen` | AutoGen integration |
|
|
102
|
+
| `huggingface` | HuggingFace models support |
|
|
103
|
+
| `garak` | Garak vulnerability scanner |
|
|
104
|
+
| `all-integrations` | All framework integrations + Penelope |
|
|
105
|
+
| `all` | Everything including HuggingFace models |
|
|
66
106
|
|
|
67
107
|
## Links
|
|
68
108
|
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
rhesis/__init__.py,sha256=_jxqGtUfCp0FdM2KTSrFpep_DrtjhffrodZ5g80Fi8M,715
|
|
2
|
+
rhesis-0.6.3.dist-info/METADATA,sha256=FNxd5TTZZj6WVVqbe3e_ZWnySXtwfaeT4OHmgHmGThI,3695
|
|
3
|
+
rhesis-0.6.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
4
|
+
rhesis-0.6.3.dist-info/licenses/LICENSE,sha256=Uux9fP3qHxOgqVh-knbkpRiqo1hmCpjg4pehEhnsZ-w,1906
|
|
5
|
+
rhesis-0.6.3.dist-info/RECORD,,
|
rhesis-0.1.0.dist-info/RECORD
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
rhesis/__init__.py,sha256=cVX2oJK-cG6sS4aCSB_aIDz_p9-KlNZw4kDBJ9XbB1A,605
|
|
2
|
-
rhesis-0.1.0.dist-info/METADATA,sha256=A3sZOp6XGEJp0UaqK05rd18BPsYqO3XR8cq5yFUAX58,2173
|
|
3
|
-
rhesis-0.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
4
|
-
rhesis-0.1.0.dist-info/licenses/LICENSE,sha256=Uux9fP3qHxOgqVh-knbkpRiqo1hmCpjg4pehEhnsZ-w,1906
|
|
5
|
-
rhesis-0.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|