rhesis 0.1.0__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 ADDED
@@ -0,0 +1,20 @@
1
+ # Rhesis - Testing and validation platform for LLM applications
2
+ #
3
+ # This is the base namespace package for Rhesis.
4
+ # For the full SDK functionality, install rhesis-sdk:
5
+ #
6
+ # pip install rhesis-sdk
7
+ #
8
+ # Documentation: https://docs.rhesis.ai
9
+
10
+ from importlib.metadata import PackageNotFoundError, version
11
+
12
+ # Namespace package declaration - allows multiple packages to contribute to rhesis.*
13
+ __path__ = __import__("pkgutil").extend_path(__path__, __name__)
14
+
15
+ try:
16
+ __version__ = version("rhesis")
17
+ except PackageNotFoundError:
18
+ __version__ = "0.0.0" # fallback for development
19
+
20
+ __all__ = ["__version__"]
@@ -0,0 +1,75 @@
1
+ Metadata-Version: 2.4
2
+ Name: rhesis
3
+ Version: 0.1.0
4
+ Summary: Rhesis - Testing and validation platform for LLM applications
5
+ Project-URL: Homepage, https://rhesis.ai
6
+ Project-URL: Repository, https://github.com/rhesis-ai/rhesis
7
+ Project-URL: Documentation, https://docs.rhesis.ai
8
+ Project-URL: Bug Tracker, https://github.com/rhesis-ai/rhesis/issues
9
+ Author-email: Engineering Team <engineering@rhesis.ai>, Harry Cruz <harry@rhesis.ai>, Nicolai Bohn <nicolai@rhesis.ai>
10
+ License: MIT
11
+ License-File: LICENSE
12
+ Keywords: ai,llm,machine-learning,testing,validation
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Classifier: Topic :: Software Development :: Testing
22
+ Requires-Python: >=3.10
23
+ Description-Content-Type: text/markdown
24
+
25
+ # Rhesis
26
+
27
+ **Testing and validation platform for LLM applications**
28
+
29
+ Rhesis helps you build reliable AI applications through comprehensive testing, validation, and monitoring.
30
+
31
+ ## Installation
32
+
33
+ ```bash
34
+ pip install rhesis
35
+ ```
36
+
37
+ For the full SDK with all testing and validation features:
38
+
39
+ ```bash
40
+ pip install rhesis-sdk
41
+ ```
42
+
43
+ ## Quick Start
44
+
45
+ ```python
46
+ # After installing rhesis-sdk
47
+ from rhesis.sdk import RhesisClient
48
+
49
+ client = RhesisClient()
50
+ ```
51
+
52
+ ## Documentation
53
+
54
+ - **Full Documentation**: [docs.rhesis.ai](https://docs.rhesis.ai)
55
+ - **API Reference**: [docs.rhesis.ai/api](https://docs.rhesis.ai/api)
56
+ - **Getting Started Guide**: [docs.rhesis.ai/getting-started](https://docs.rhesis.ai/getting-started)
57
+
58
+ ## Packages
59
+
60
+ The Rhesis ecosystem includes:
61
+
62
+ | Package | Description |
63
+ |---------|-------------|
64
+ | `rhesis` | Base package (this package) |
65
+ | `rhesis-sdk` | Full SDK for testing and validation |
66
+
67
+ ## Links
68
+
69
+ - [Website](https://rhesis.ai)
70
+ - [GitHub](https://github.com/rhesis-ai/rhesis)
71
+ - [PyPI](https://pypi.org/project/rhesis/)
72
+
73
+ ## License
74
+
75
+ MIT License - see [LICENSE](LICENSE) for details.
@@ -0,0 +1,5 @@
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,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,17 @@
1
+ Copyright (c) 2025 Rhesis AI GmbH
2
+
3
+ This software contains components governed by various licensing terms:
4
+ - Any files located within directories labeled "/ee/" (if present) are governed by the license terms specified in the "ee/LICENSE" file.
5
+ - Third-party libraries and tools included in the Rhesis software are used under the original licenses provided by their respective copyright holders. See the NOTICE file for required attributions and third-party license information.
6
+ - All other source code and materials in this repository are made available under the MIT Expat license outlined below.
7
+
8
+ Permission is granted, free of charge, to anyone obtaining a copy of this software and its accompanying documentation (the "Software"), to use the Software without restriction. This includes, but is not limited to, rights to use, copy, alter, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to allow others to do the same, provided the following conditions are met:
9
+ This copyright and permission notice must be included in all copies or significant portions of the Software.
10
+
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE HELD LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12
+
13
+ Note:
14
+ The MIT License applies only to the source code in this repository.
15
+ Logos, trademarks, and other brand assets (e.g. files under /apps/*/public/logos/, /apps/*/public/elements/, /apps/*/public/Typography/)
16
+ are proprietary to Rhesis AI GmbH and are not licensed under MIT.
17
+ They may not be used without prior written permission.