exemplar-harness-sdk 0.1.0__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.
- exemplar_harness_sdk-0.1.0/LICENSE +61 -0
- exemplar_harness_sdk-0.1.0/PKG-INFO +788 -0
- exemplar_harness_sdk-0.1.0/README.md +729 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/__init__.py +17 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/_version.py +3 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/client.py +44 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/config.py +54 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/envelope.py +32 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/exceptions.py +20 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/harness.py +106 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/ingest.py +48 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/__init__.py +0 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/agno.py +58 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/anthropic.py +141 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/arize_phoenix.py +62 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/autogen.py +161 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/claude_agent.py +195 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/crewai.py +103 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/google_adk.py +31 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/haystack.py +112 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/langchain.py +155 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/langgraph.py +141 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/litellm.py +179 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/llamaindex.py +209 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/openai.py +242 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/portkey.py +230 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/pydantic_ai.py +109 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/semantic_kernel.py +104 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/integrations/smolagents.py +89 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/models.py +41 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/serialize.py +29 -0
- exemplar_harness_sdk-0.1.0/exemplar_harness/session.py +44 -0
- exemplar_harness_sdk-0.1.0/pyproject.toml +103 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
Exemplar Non-Commercial License 1.0
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Exemplar Dev LLC. All rights reserved.
|
|
4
|
+
|
|
5
|
+
1. Definitions
|
|
6
|
+
|
|
7
|
+
"Software" means the exemplar-harness-sdk source code, documentation, and
|
|
8
|
+
associated files in this repository.
|
|
9
|
+
|
|
10
|
+
"Commercial Use" means any use of the Software that is primarily intended for
|
|
11
|
+
or directed toward commercial advantage or monetary compensation, including
|
|
12
|
+
without limitation:
|
|
13
|
+
|
|
14
|
+
- use in production systems, products, or services offered to customers;
|
|
15
|
+
- use as part of a paid offering, subscription, or hosted service;
|
|
16
|
+
- use by a for-profit entity in connection with its business operations;
|
|
17
|
+
- sublicensing, selling, or licensing the Software or derivative works; or
|
|
18
|
+
- internal use by a for-profit entity beyond reasonable evaluation,
|
|
19
|
+
development, or testing of integration with the Exemplar platform.
|
|
20
|
+
|
|
21
|
+
Non-commercial use includes personal projects, academic research, and
|
|
22
|
+
unpaid open-source contributions, provided such use does not constitute
|
|
23
|
+
Commercial Use under the terms above.
|
|
24
|
+
|
|
25
|
+
2. Grant of rights (non-commercial)
|
|
26
|
+
|
|
27
|
+
Subject to the terms of this license, Exemplar Dev LLC grants you a
|
|
28
|
+
non-exclusive, non-transferable, royalty-free license to use, copy, modify,
|
|
29
|
+
and distribute the Software for Non-commercial Use only.
|
|
30
|
+
|
|
31
|
+
3. Commercial use
|
|
32
|
+
|
|
33
|
+
Commercial Use is not permitted under this license. To use the Software for
|
|
34
|
+
Commercial Use, you must obtain a separate commercial license from
|
|
35
|
+
Exemplar Dev LLC. Contact: https://exemplar.dev
|
|
36
|
+
|
|
37
|
+
4. Conditions
|
|
38
|
+
|
|
39
|
+
You must retain this license and copyright notice in all copies or
|
|
40
|
+
substantial portions of the Software.
|
|
41
|
+
|
|
42
|
+
You may not remove or alter any proprietary notices.
|
|
43
|
+
|
|
44
|
+
5. No trademark license
|
|
45
|
+
|
|
46
|
+
This license does not grant permission to use Exemplar Dev LLC trade names,
|
|
47
|
+
trademarks, service marks, or logos.
|
|
48
|
+
|
|
49
|
+
6. Disclaimer
|
|
50
|
+
|
|
51
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
52
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
53
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
54
|
+
EXEMPLAR DEV LLC BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER
|
|
55
|
+
IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN
|
|
56
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
57
|
+
|
|
58
|
+
7. Termination
|
|
59
|
+
|
|
60
|
+
This license terminates automatically if you breach any of its terms. Upon
|
|
61
|
+
termination, you must cease all use and distribution of the Software.
|