zenture-sdk 1.0.0rc1__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.
Files changed (85) hide show
  1. zenture_sdk-1.0.0rc1/.gitignore +11 -0
  2. zenture_sdk-1.0.0rc1/AGENTS.md +119 -0
  3. zenture_sdk-1.0.0rc1/CHANGELOG.md +39 -0
  4. zenture_sdk-1.0.0rc1/CODE_OF_CONDUCT.md +14 -0
  5. zenture_sdk-1.0.0rc1/CONTRIBUTING.md +85 -0
  6. zenture_sdk-1.0.0rc1/LICENSE +201 -0
  7. zenture_sdk-1.0.0rc1/NOTICE +7 -0
  8. zenture_sdk-1.0.0rc1/PKG-INFO +541 -0
  9. zenture_sdk-1.0.0rc1/README.md +506 -0
  10. zenture_sdk-1.0.0rc1/SECURITY.md +70 -0
  11. zenture_sdk-1.0.0rc1/THIRD_PARTY_NOTICES.md +60 -0
  12. zenture_sdk-1.0.0rc1/docs/account-reads.md +69 -0
  13. zenture_sdk-1.0.0rc1/docs/api-reference.md +206 -0
  14. zenture_sdk-1.0.0rc1/docs/assets/zenture-logo.svg +87 -0
  15. zenture_sdk-1.0.0rc1/docs/async-operations.md +94 -0
  16. zenture_sdk-1.0.0rc1/docs/authentication.md +44 -0
  17. zenture_sdk-1.0.0rc1/docs/errors.md +41 -0
  18. zenture_sdk-1.0.0rc1/docs/idempotency.md +80 -0
  19. zenture_sdk-1.0.0rc1/docs/pagination.md +50 -0
  20. zenture_sdk-1.0.0rc1/docs/rate-limits.md +29 -0
  21. zenture_sdk-1.0.0rc1/docs/release.md +24 -0
  22. zenture_sdk-1.0.0rc1/docs/response-shapes.md +653 -0
  23. zenture_sdk-1.0.0rc1/docs/sdk-call-reference.md +1004 -0
  24. zenture_sdk-1.0.0rc1/docs/security.md +33 -0
  25. zenture_sdk-1.0.0rc1/examples/account_status.py +20 -0
  26. zenture_sdk-1.0.0rc1/examples/async_chat.py +24 -0
  27. zenture_sdk-1.0.0rc1/examples/async_evaluate.py +25 -0
  28. zenture_sdk-1.0.0rc1/examples/chat_multi.py +29 -0
  29. zenture_sdk-1.0.0rc1/examples/chat_single.py +22 -0
  30. zenture_sdk-1.0.0rc1/examples/end_to_end_chat_evaluation.py +129 -0
  31. zenture_sdk-1.0.0rc1/examples/error_handling.py +29 -0
  32. zenture_sdk-1.0.0rc1/examples/evaluate.py +105 -0
  33. zenture_sdk-1.0.0rc1/examples/helloworld.py +14 -0
  34. zenture_sdk-1.0.0rc1/examples/idempotency.py +21 -0
  35. zenture_sdk-1.0.0rc1/examples/input_wizard.py +23 -0
  36. zenture_sdk-1.0.0rc1/examples/list_models.py +30 -0
  37. zenture_sdk-1.0.0rc1/examples/operation_polling.py +22 -0
  38. zenture_sdk-1.0.0rc1/examples/pagination.py +15 -0
  39. zenture_sdk-1.0.0rc1/openapi/zenture-public-api-v1.openapi.json +4677 -0
  40. zenture_sdk-1.0.0rc1/pyproject.toml +92 -0
  41. zenture_sdk-1.0.0rc1/src/zenture/__init__.py +9 -0
  42. zenture_sdk-1.0.0rc1/src/zenture/_contract/__init__.py +70 -0
  43. zenture_sdk-1.0.0rc1/src/zenture/_contract/headers.py +17 -0
  44. zenture_sdk-1.0.0rc1/src/zenture/_contract/models.py +504 -0
  45. zenture_sdk-1.0.0rc1/src/zenture/_resources/__init__.py +39 -0
  46. zenture_sdk-1.0.0rc1/src/zenture/_resources/_utils.py +110 -0
  47. zenture_sdk-1.0.0rc1/src/zenture/_resources/account.py +94 -0
  48. zenture_sdk-1.0.0rc1/src/zenture/_resources/chat.py +521 -0
  49. zenture_sdk-1.0.0rc1/src/zenture/_resources/evaluations.py +364 -0
  50. zenture_sdk-1.0.0rc1/src/zenture/_resources/helloworld.py +32 -0
  51. zenture_sdk-1.0.0rc1/src/zenture/_resources/input_wizard.py +136 -0
  52. zenture_sdk-1.0.0rc1/src/zenture/_resources/models.py +47 -0
  53. zenture_sdk-1.0.0rc1/src/zenture/_resources/operations.py +141 -0
  54. zenture_sdk-1.0.0rc1/src/zenture/_transport/__init__.py +8 -0
  55. zenture_sdk-1.0.0rc1/src/zenture/_transport/async_.py +204 -0
  56. zenture_sdk-1.0.0rc1/src/zenture/_transport/base.py +109 -0
  57. zenture_sdk-1.0.0rc1/src/zenture/_transport/sync.py +204 -0
  58. zenture_sdk-1.0.0rc1/src/zenture/_version.py +5 -0
  59. zenture_sdk-1.0.0rc1/src/zenture/async_client.py +140 -0
  60. zenture_sdk-1.0.0rc1/src/zenture/client.py +140 -0
  61. zenture_sdk-1.0.0rc1/src/zenture/config.py +152 -0
  62. zenture_sdk-1.0.0rc1/src/zenture/errors.py +207 -0
  63. zenture_sdk-1.0.0rc1/src/zenture/idempotency.py +53 -0
  64. zenture_sdk-1.0.0rc1/src/zenture/models.py +39 -0
  65. zenture_sdk-1.0.0rc1/src/zenture/polling.py +81 -0
  66. zenture_sdk-1.0.0rc1/src/zenture/py.typed +1 -0
  67. zenture_sdk-1.0.0rc1/src/zenture/rate_limits.py +53 -0
  68. zenture_sdk-1.0.0rc1/src/zenture/redaction.py +38 -0
  69. zenture_sdk-1.0.0rc1/src/zenture/retries.py +57 -0
  70. zenture_sdk-1.0.0rc1/src/zenture/types.py +49 -0
  71. zenture_sdk-1.0.0rc1/tests/integration/contract/test_contract_models.py +458 -0
  72. zenture_sdk-1.0.0rc1/tests/integration/contract/test_openapi_contract.py +173 -0
  73. zenture_sdk-1.0.0rc1/tests/unit/test_client.py +168 -0
  74. zenture_sdk-1.0.0rc1/tests/unit/test_config.py +214 -0
  75. zenture_sdk-1.0.0rc1/tests/unit/test_docs_examples.py +501 -0
  76. zenture_sdk-1.0.0rc1/tests/unit/test_errors.py +123 -0
  77. zenture_sdk-1.0.0rc1/tests/unit/test_examples.py +67 -0
  78. zenture_sdk-1.0.0rc1/tests/unit/test_idempotency.py +35 -0
  79. zenture_sdk-1.0.0rc1/tests/unit/test_package_bootstrap.py +62 -0
  80. zenture_sdk-1.0.0rc1/tests/unit/test_polling.py +51 -0
  81. zenture_sdk-1.0.0rc1/tests/unit/test_rate_limits.py +60 -0
  82. zenture_sdk-1.0.0rc1/tests/unit/test_redaction.py +40 -0
  83. zenture_sdk-1.0.0rc1/tests/unit/test_resources.py +2134 -0
  84. zenture_sdk-1.0.0rc1/tests/unit/test_retries.py +70 -0
  85. zenture_sdk-1.0.0rc1/tests/unit/test_transport.py +665 -0
@@ -0,0 +1,11 @@
1
+ .coverage
2
+ .mypy_cache/
3
+ .pytest_cache/
4
+ .ruff_cache/
5
+ .venv/
6
+ __pycache__/
7
+ *.py[cod]
8
+ dist/
9
+ build/
10
+ *.egg-info/
11
+ scratch/
@@ -0,0 +1,119 @@
1
+ # AGENTS.md
2
+
3
+ Purpose: onboard contributors and coding agents to the public Python SDK for
4
+ the zenture Public API.
5
+
6
+ ## Repository Purpose
7
+
8
+ `zenture-sdk` is the official server-side only Python SDK. It is intended for
9
+ backend services, workers, automation jobs, CI, evaluation pipelines, and
10
+ controlled notebooks. It is not for browsers, mobile apps, or frontend bundles.
11
+
12
+ Package names:
13
+
14
+ - Distribution: `zenture-sdk`
15
+ - Import package: `zenture`
16
+ - Sync client: `Zenture`
17
+ - Async client: `AsyncZenture`
18
+
19
+ Public product references:
20
+
21
+ - Users create API tokens at `https://ai.zenture.app/profile?tab=api-tokens`.
22
+ - Human-facing API documentation lives at
23
+ `https://www.zenture.app/developers`.
24
+ - The committed `openapi/zenture-public-api-v1.openapi.json` file remains the
25
+ SDK-local contract source of truth for implementation and drift tests.
26
+
27
+ ## Architecture Map
28
+
29
+ - `src/zenture/client.py` and `src/zenture/async_client.py`: public clients.
30
+ - `src/zenture/_resources/`: private resource implementation classes backing
31
+ public `client.<resource>` attributes for operations, chat, input wizard,
32
+ evaluations, models, billing, usage, limits, and helloworld.
33
+ - `src/zenture/_transport/`: private sync/async `httpx` transport layer.
34
+ - `src/zenture/_contract/`: internal OpenAPI-derived Pydantic models.
35
+ - `src/zenture/errors.py`: typed SDK exceptions.
36
+ - `src/zenture/polling.py`: polling policy primitives.
37
+ - `src/zenture/retries.py`: retry decision policy.
38
+ - `src/zenture/idempotency.py`: idempotency-key helpers.
39
+ - `src/zenture/redaction.py`: secret redaction helpers.
40
+
41
+ ## Public vs Internal Surface
42
+
43
+ Only `Zenture`, `AsyncZenture`, and `__version__` are top-level public exports.
44
+ Do not export internal `_contract` models from `zenture.__init__`.
45
+
46
+ Resource methods such as `client.chat.run(...)`, `client.models.list(...)`, and
47
+ `client.operations.wait(...)` are the ergonomic public API. `_transport`,
48
+ `_resources`, and `_contract` are implementation namespaces even when tests
49
+ import them.
50
+
51
+ ## Contract drift
52
+
53
+ The OpenAPI artifact in `openapi/zenture-public-api-v1.openapi.json` is the
54
+ local contract source of truth. Contract tests under
55
+ `tests/integration/contract/` verify operation statuses, error codes, bounded
56
+ operation result shapes, idempotency header constraints, and excluded
57
+ user-session routes.
58
+
59
+ Use `https://www.zenture.app/developers` for human-facing API context,
60
+ but do not implement SDK behavior from website prose unless the local OpenAPI
61
+ artifact and drift tests agree.
62
+
63
+ When adding or changing a resource:
64
+
65
+ - Confirm the route exists in OpenAPI.
66
+ - Add or update internal Pydantic contract models.
67
+ - Add contract drift tests where the schema meaning matters.
68
+ - Add sync and async resource tests using `httpx.MockTransport`.
69
+ - Keep examples and docs aligned with the public surface.
70
+
71
+ ## Required Commands
72
+
73
+ ```bash
74
+ python3 -m ruff format --check .
75
+ python3 -m ruff check .
76
+ python3 -m mypy
77
+ python3 -m pyright
78
+ python3 -m pytest
79
+ python3 -m coverage run -m pytest
80
+ python3 -m coverage report
81
+ python3 -m build
82
+ python3 -m twine check dist/*
83
+ ```
84
+
85
+ Remove local artifacts after verification: `.coverage`, `.pytest_cache`,
86
+ `.ruff_cache`, `.mypy_cache`, `dist/`, and `__pycache__/`.
87
+
88
+ ## Security Red Lines
89
+
90
+ - no token logging
91
+ - no token literals in examples, docs, tests, or issue text
92
+ - no arbitrary base URL origins
93
+ - no API-token-management SDK resource
94
+ - no public helper for agentic chat mode in Public V1
95
+ - no internal `_contract` top-level exports
96
+ - no request or response body logging by default
97
+ - no private infrastructure details in public docs
98
+
99
+ ## Contribution Expectations
100
+
101
+ New resources must include typed sync and async behavior, idempotency safety for
102
+ mutating calls, no real network tests, and public-safe docs/examples when the
103
+ usage surface changes.
104
+
105
+ Examples must use `Zenture.from_env()` or `AsyncZenture.from_env()`. Mutating
106
+ examples must pass explicit stable idempotency keys, preferably built with the
107
+ SDK helper. Do not create tracked `.env` files.
108
+
109
+ ## Pull Request Rules
110
+
111
+ Use one primary PR type: `type: fix`, `type: feat`, `type: docs`,
112
+ `type: test`, `type: chore`, `type: refactor`, or `type: security`.
113
+
114
+ Every PR must keep public docs production-relevant, avoid internal routes, avoid
115
+ real token patterns, and preserve the private/public package boundary. Public
116
+ API changes require matching tests, README/docs updates, and changelog coverage.
117
+
118
+ Required review posture: small focused PRs, `Development CI` green, CODEOWNERS
119
+ review once branch protection is available, and squash merge only.
@@ -0,0 +1,39 @@
1
+ # Changelog
2
+
3
+ All notable changes to `zenture-sdk` will be documented in this file.
4
+
5
+ The project follows semantic versioning once public releases begin. Prerelease
6
+ versions may change while the Public API contract is still in release-candidate
7
+ state.
8
+
9
+ ## Unreleased
10
+
11
+ No unreleased changes.
12
+
13
+ ## 1.0.0rc1 - 2026-06-27
14
+
15
+ - Added `client.wallet.get()` and `await client.wallet.get()` for the public
16
+ `GET /v1/wallet` account projection with `wallet:read` scope.
17
+ - Removed the unpublished `client.billing.get()` mapping and `/v1/billing`
18
+ SDK surface in favor of wallet terminology before public release.
19
+ - Added optional `chat.run(..., include_content=True)` and
20
+ `evaluations.run(..., include_detail=True)` attachments for common
21
+ chat-then-evaluate application flows.
22
+ - Added an end-to-end chat evaluation smoke example with wallet, model
23
+ discovery, input wizard, chat, evaluation, and billed-amount summary output.
24
+ - Synced the Public API OpenAPI artifact with pagination parameters for chats,
25
+ chat messages, and evaluations.
26
+ - Added `limit` and `cursor` support plus sync/async iterator helpers for chat
27
+ summaries, chat messages, and evaluations.
28
+ - Added pagination documentation and an executable pagination example.
29
+ - Updated operation-error contract handling to match the current OpenAPI
30
+ `PublicOperationError` schema.
31
+
32
+ ## 0.1.0b1 - 2026-06-15
33
+
34
+ - Added SDK architecture and implementation plan.
35
+ - Added repository governance bootstrap documents.
36
+ - Added public sync/async clients, private httpx transport, strict contract
37
+ models, model discovery, single-/multi-model chat, evaluation creation,
38
+ operation reads, billing, usage, limits, idempotency, retry, timeout and
39
+ polling primitives.
@@ -0,0 +1,14 @@
1
+ # Code of Conduct
2
+
3
+ zenture SDK contributors are expected to participate professionally, respectfully,
4
+ and constructively.
5
+
6
+ Unacceptable behavior includes harassment, abusive comments, intimidation,
7
+ disruptive conduct, publishing private information without permission, or any
8
+ behavior that makes the project unsafe for maintainers or contributors.
9
+
10
+ Maintainers may remove comments, reject contributions, restrict participation, or
11
+ take other action needed to protect the project.
12
+
13
+ Security issues must be reported through the private process described in
14
+ `SECURITY.md`, not through public issues or pull requests.
@@ -0,0 +1,85 @@
1
+ # Contributing
2
+
3
+ `zenture-sdk` is the public Python SDK for the zenture Public API. The current
4
+ repository contains the runtime SDK, typed contract layer, public docs,
5
+ examples, and packaging configuration used for prerelease validation.
6
+
7
+ ## Development Standards
8
+
9
+ - Keep public APIs typed and exposed through `Zenture`, `AsyncZenture`, and
10
+ resource attributes such as `client.chat`.
11
+ - Keep `_transport`, `_resources`, and `_contract` as implementation
12
+ namespaces.
13
+ - Use Pydantic models for request, response, and configuration validation.
14
+ - Use `httpx` for sync and async HTTP transport.
15
+ - Do not log secrets, prompts, raw request bodies, or raw response bodies.
16
+ - Add deterministic tests for behavior changes.
17
+ - Keep README, docs, examples, and `AGENTS.md` aligned when public behavior
18
+ changes.
19
+ - Maintainers may run controlled non-production checks using the private
20
+ environment runbook. Do not commit non-production hostnames, local port
21
+ conventions, tokens, payloads, or logs.
22
+
23
+ ## Pull Requests
24
+
25
+ All changes should go through a pull request into `main`. Keep pull requests
26
+ small and reviewable: one topic per PR, no unrelated formatting churn, and no
27
+ mixed feature/security/release work.
28
+
29
+ Pull requests should include:
30
+
31
+ - a concise description of the change
32
+ - tests or a clear reason tests are not applicable
33
+ - documentation updates when behavior, public API, security posture, examples,
34
+ or release process changes
35
+ - confirmation that no real zenture API tokens or customer data were added
36
+
37
+ Use one primary PR type:
38
+
39
+ - `type: fix` - bug fix or incorrect SDK behavior
40
+ - `type: feat` - new public SDK capability
41
+ - `type: docs` - README, examples, AGENTS, changelog, or prose docs
42
+ - `type: test` - tests only
43
+ - `type: chore` - CI, packaging, metadata, dependency upkeep
44
+ - `type: refactor` - internal change with no public behavior change
45
+ - `type: security` - security hardening or vulnerability fix
46
+
47
+ Public-surface changes require extra care. Any change to `Zenture`,
48
+ `AsyncZenture`, public resources, public errors, return types, examples, or
49
+ OpenAPI-derived contract behavior must update tests and docs in the same PR.
50
+ Breaking changes are not allowed in V1 without an explicit release decision,
51
+ migration note, and changelog entry.
52
+
53
+ Before merge:
54
+
55
+ - `Development CI` must pass.
56
+ - CODEOWNERS review must be satisfied once branch protection is available.
57
+ - Security, docs, and artifact checklist items in the PR template must be
58
+ answered truthfully.
59
+ - Use squash merge only; the PR title becomes the commit title.
60
+ - Delete the branch after merge.
61
+
62
+ ## Local Checks
63
+
64
+ Run the full local gate before handing off SDK changes:
65
+
66
+ ```bash
67
+ python3 -m ruff format --check .
68
+ python3 -m ruff check .
69
+ python3 -m mypy
70
+ python3 -m pyright
71
+ python3 -m pytest
72
+ python3 -m coverage run -m pytest
73
+ python3 -m coverage report
74
+ python3 -m build
75
+ python3 -m twine check dist/*
76
+ ```
77
+
78
+ Tests must not hit the real zenture API. Use `httpx.MockTransport` or static
79
+ checks for docs and examples.
80
+
81
+ ## Release Process
82
+
83
+ Public PyPI releases are blocked until the SDK reviewer gate passes. Publishing
84
+ must use PyPI Trusted Publishing through GitHub Actions OIDC, not long-lived
85
+ package tokens.
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 zenture UG (haftungsbeschraenkt)
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,7 @@
1
+ zenture SDK
2
+ Copyright 2026 zenture UG (haftungsbeschraenkt)
3
+
4
+ This product includes software developed by zenture UG (haftungsbeschraenkt).
5
+
6
+ Third-party dependency license information is documented in
7
+ THIRD_PARTY_NOTICES.md.