dataerai-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.
- dataerai_sdk-0.1.0/LICENSE +348 -0
- dataerai_sdk-0.1.0/PKG-INFO +498 -0
- dataerai_sdk-0.1.0/README.md +118 -0
- dataerai_sdk-0.1.0/dataerai/__init__.py +28 -0
- dataerai_sdk-0.1.0/dataerai/_daemon.py +57 -0
- dataerai_sdk-0.1.0/dataerai/_errors.py +17 -0
- dataerai_sdk-0.1.0/dataerai/_framing.py +58 -0
- dataerai_sdk-0.1.0/dataerai/_types.py +112 -0
- dataerai_sdk-0.1.0/dataerai/_version.py +12 -0
- dataerai_sdk-0.1.0/dataerai/client.py +686 -0
- dataerai_sdk-0.1.0/dataerai/ml/__init__.py +10 -0
- dataerai_sdk-0.1.0/dataerai/ml/access.py +161 -0
- dataerai_sdk-0.1.0/dataerai/ml/lineage.py +182 -0
- dataerai_sdk-0.1.0/dataerai/ml/zarr_dataset.py +326 -0
- dataerai_sdk-0.1.0/dataerai_sdk.egg-info/PKG-INFO +498 -0
- dataerai_sdk-0.1.0/dataerai_sdk.egg-info/SOURCES.txt +23 -0
- dataerai_sdk-0.1.0/dataerai_sdk.egg-info/dependency_links.txt +1 -0
- dataerai_sdk-0.1.0/dataerai_sdk.egg-info/requires.txt +11 -0
- dataerai_sdk-0.1.0/dataerai_sdk.egg-info/top_level.txt +1 -0
- dataerai_sdk-0.1.0/pyproject.toml +61 -0
- dataerai_sdk-0.1.0/setup.cfg +4 -0
- dataerai_sdk-0.1.0/tests/test_client.py +688 -0
- dataerai_sdk-0.1.0/tests/test_framing.py +147 -0
- dataerai_sdk-0.1.0/tests/test_lineage_client.py +204 -0
- dataerai_sdk-0.1.0/tests/test_zarr_dataset.py +483 -0
|
@@ -0,0 +1,348 @@
|
|
|
1
|
+
DATAERAI PROPRIETARY SOFTWARE LICENSE AGREEMENT
|
|
2
|
+
|
|
3
|
+
Version 1.2
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2026 Dataerai, Inc. All Rights Reserved.
|
|
6
|
+
|
|
7
|
+
================================================================================
|
|
8
|
+
NOTICE: THE SOFTWARE IS PROPRIETARY AND CONFIDENTIAL. NO RIGHTS ARE GRANTED
|
|
9
|
+
EXCEPT AS EXPRESSLY AND NARROWLY SET FORTH BELOW. ALL RIGHTS NOT EXPRESSLY
|
|
10
|
+
GRANTED ARE RESERVED BY DATAERAI, INC. THIS AGREEMENT APPLIES EQUALLY TO USE
|
|
11
|
+
BY HUMANS AND BY ARTIFICIAL INTELLIGENCE AGENTS (SEE SECTION 4). IF YOU DO NOT
|
|
12
|
+
AGREE TO EVERY TERM OF THIS AGREEMENT, YOU HAVE NO LICENSE AND MUST NOT ACCESS,
|
|
13
|
+
INSTALL, COPY, OR USE THE SOFTWARE IN ANY MANNER.
|
|
14
|
+
================================================================================
|
|
15
|
+
|
|
16
|
+
This Dataerai Proprietary Software License Agreement (this "Agreement") is a
|
|
17
|
+
binding legal agreement between Dataerai, Inc., a corporation organized under
|
|
18
|
+
the laws of the Commonwealth of Pennsylvania ("Licensor"), and the single
|
|
19
|
+
identified individual or legal entity that has been expressly authorized in
|
|
20
|
+
writing by Licensor to receive the Software ("Licensee"). By accessing,
|
|
21
|
+
installing, copying, or using the Software, or by clicking to accept, Licensee
|
|
22
|
+
agrees to be bound by this Agreement.
|
|
23
|
+
|
|
24
|
+
--------------------------------------------------------------------------------
|
|
25
|
+
1. DEFINITIONS
|
|
26
|
+
--------------------------------------------------------------------------------
|
|
27
|
+
|
|
28
|
+
1.1 "Software" means the Dataerai software package, in any and all forms,
|
|
29
|
+
including without limitation source code, object code, byte code, binaries,
|
|
30
|
+
scripts, schemas, configuration, models, weights, prompts, embeddings,
|
|
31
|
+
graph taxonomies, registries, metadata, libraries, application programming
|
|
32
|
+
interfaces, command-line tooling, and any associated materials, together
|
|
33
|
+
with all updates, upgrades, patches, modifications, enhancements, and
|
|
34
|
+
Documentation, whether delivered now or in the future.
|
|
35
|
+
|
|
36
|
+
1.2 "Documentation" means any technical or user materials, in any medium,
|
|
37
|
+
provided or made available by Licensor relating to the Software.
|
|
38
|
+
|
|
39
|
+
1.3 "Authorized Purpose" means solely the internal, non-production evaluation
|
|
40
|
+
of the Software by Licensee, on systems owned and controlled by Licensee,
|
|
41
|
+
strictly within the scope, seat count, term, and field of use expressly
|
|
42
|
+
stated in a written authorization signed by an officer of Licensor. Absent
|
|
43
|
+
such a written authorization, the Authorized Purpose is null and no use is
|
|
44
|
+
permitted.
|
|
45
|
+
|
|
46
|
+
1.4 "Confidential Information" means the Software and any non-public information
|
|
47
|
+
disclosed by Licensor, whether or not marked confidential. The Software is
|
|
48
|
+
deemed Confidential Information in its entirety.
|
|
49
|
+
|
|
50
|
+
--------------------------------------------------------------------------------
|
|
51
|
+
2. GRANT OF LICENSE
|
|
52
|
+
--------------------------------------------------------------------------------
|
|
53
|
+
|
|
54
|
+
2.1 Subject to Licensee's strict and continuous compliance with every term of
|
|
55
|
+
this Agreement, Licensor grants to Licensee a personal, non-exclusive,
|
|
56
|
+
non-transferable, non-sublicensable, non-assignable, revocable, royalty-
|
|
57
|
+
bearing-or-evaluation-only, and fully revocable license to use the Software
|
|
58
|
+
solely for the Authorized Purpose and solely during the Term.
|
|
59
|
+
|
|
60
|
+
2.2 The license granted in Section 2.1 is the entirety of the rights granted.
|
|
61
|
+
It conveys no right to copy (except a single archival copy as required for
|
|
62
|
+
backup, retaining all notices), no right to modify, no right to create
|
|
63
|
+
derivative works, no right to distribute, no right to sublicense, no right
|
|
64
|
+
to display or perform publicly, and no right to use in production, in a
|
|
65
|
+
service bureau, or on behalf of any third party.
|
|
66
|
+
|
|
67
|
+
2.3 No license, immunity, or other right is granted by implication, estoppel,
|
|
68
|
+
exhaustion, or otherwise. No patent, trademark, or other intellectual
|
|
69
|
+
property right is licensed except the limited use right in Section 2.1.
|
|
70
|
+
|
|
71
|
+
--------------------------------------------------------------------------------
|
|
72
|
+
3. RESTRICTIONS
|
|
73
|
+
--------------------------------------------------------------------------------
|
|
74
|
+
|
|
75
|
+
Licensee shall not, and shall not permit, enable, or assist any third party or
|
|
76
|
+
AI Agent (as defined in Section 4) to:
|
|
77
|
+
|
|
78
|
+
3.1 copy, reproduce, republish, upload, post, transmit, or otherwise duplicate
|
|
79
|
+
the Software except for the single archival copy permitted in Section 2.2;
|
|
80
|
+
|
|
81
|
+
3.2 modify, adapt, translate, port, fork, or create derivative works of the
|
|
82
|
+
Software, in whole or in part;
|
|
83
|
+
|
|
84
|
+
3.3 sell, resell, rent, lease, lend, distribute, transfer, disclose, host,
|
|
85
|
+
sublicense, time-share, or otherwise make the Software available to any
|
|
86
|
+
third party, whether for value or not;
|
|
87
|
+
|
|
88
|
+
3.4 reverse engineer, decompile, disassemble, decrypt, extract, or otherwise
|
|
89
|
+
attempt to derive or reconstruct the source code, architecture, algorithms,
|
|
90
|
+
model weights, training data, graph taxonomies, or trade secrets embodied
|
|
91
|
+
in the Software, except, and only to the minimum extent, that this
|
|
92
|
+
prohibition is unenforceable under applicable law and only after written
|
|
93
|
+
notice to Licensor;
|
|
94
|
+
|
|
95
|
+
3.5 use the Software to develop, train, benchmark, or improve any competing,
|
|
96
|
+
similar, or alternative product, model, or service;
|
|
97
|
+
|
|
98
|
+
3.6 conduct, publish, or disclose any benchmark, performance, security, or
|
|
99
|
+
comparative test or analysis of the Software without Licensor's prior
|
|
100
|
+
written consent;
|
|
101
|
+
|
|
102
|
+
3.7 remove, alter, obscure, or fail to reproduce any copyright, proprietary,
|
|
103
|
+
confidentiality, or other notice contained in or on the Software;
|
|
104
|
+
|
|
105
|
+
3.8 circumvent, disable, or interfere with any license-key, telemetry, usage-
|
|
106
|
+
metering, digital-rights-management, or access-control mechanism;
|
|
107
|
+
|
|
108
|
+
3.9 use the Software in excess of the authorized seat count, scope, field of
|
|
109
|
+
use, or Term, or for any purpose other than the Authorized Purpose; or
|
|
110
|
+
|
|
111
|
+
3.10 use the Software in violation of any applicable law, regulation, or third-
|
|
112
|
+
party right, including export control and sanctions laws.
|
|
113
|
+
|
|
114
|
+
--------------------------------------------------------------------------------
|
|
115
|
+
4. ARTIFICIAL INTELLIGENCE, AGENTS, AND AUTOMATED USE
|
|
116
|
+
--------------------------------------------------------------------------------
|
|
117
|
+
|
|
118
|
+
4.1 Definition. "AI Agent" means any artificial intelligence or machine-
|
|
119
|
+
learning system, model, or software — including any autonomous or semi-
|
|
120
|
+
autonomous agent, large language model, multi-agent system, robotic process
|
|
121
|
+
automation, bot, crawler, scraper, copilot, or other automated process —
|
|
122
|
+
that accesses, operates, invokes, queries, or acts upon the Software,
|
|
123
|
+
whether or not under direct human supervision, and whether operating on
|
|
124
|
+
Licensee's behalf, on Licensee's systems, or using Licensee's credentials,
|
|
125
|
+
tokens, API keys, or sessions.
|
|
126
|
+
|
|
127
|
+
4.2 Agents Bound by this Agreement. This Agreement applies in full to any access
|
|
128
|
+
to or use of the Software by, through, or on behalf of an AI Agent. Every
|
|
129
|
+
restriction, obligation, and prohibition that binds Licensee binds equally
|
|
130
|
+
any AI Agent that Licensee deploys, authorizes, instructs, integrates, or
|
|
131
|
+
permits to interact with the Software. An AI Agent is not a separate,
|
|
132
|
+
independent, or exempt user, and acquires no rights of its own under this
|
|
133
|
+
Agreement.
|
|
134
|
+
|
|
135
|
+
4.3 Full Responsibility for Agent Conduct. Licensee is fully and solely
|
|
136
|
+
responsible for all acts and omissions of any AI Agent acting on Licensee's
|
|
137
|
+
behalf, on Licensee's systems, or via Licensee's credentials, as if those
|
|
138
|
+
acts were Licensee's own. The autonomy of the AI Agent, the absence of human
|
|
139
|
+
supervision, or the absence of specific human intent is not a defense to any
|
|
140
|
+
breach. Licensee shall not use an AI Agent to do, attempt, or enable
|
|
141
|
+
anything that Licensee is itself prohibited from doing under this Agreement.
|
|
142
|
+
|
|
143
|
+
4.4 No Training, Ingestion, or Derivation. Licensee shall not, and shall not
|
|
144
|
+
permit any AI Agent or third party to, use the Software or any portion of it
|
|
145
|
+
— including its source code, object code, structure, schemas, graph
|
|
146
|
+
taxonomies, registries, metadata, model weights, prompts, embeddings,
|
|
147
|
+
Documentation, or Outputs — as input to, as training, fine-tuning, or
|
|
148
|
+
alignment data for, as a retrieval or context corpus for, or as a basis to
|
|
149
|
+
distill, replicate, or derive, any AI Agent, model, dataset, or competing
|
|
150
|
+
system.
|
|
151
|
+
|
|
152
|
+
4.5 No Automated Extraction. Licensee shall not use any AI Agent to scrape,
|
|
153
|
+
crawl, harvest, index, reverse engineer, or otherwise extract the Software,
|
|
154
|
+
its structure, its parameters, or its Outputs, including by means of
|
|
155
|
+
automated or adversarial querying intended to reconstruct or approximate the
|
|
156
|
+
Software's behavior, weights, taxonomies, or underlying data.
|
|
157
|
+
|
|
158
|
+
4.6 Outputs. "Outputs" means any data, content, predictions, classifications,
|
|
159
|
+
embeddings, analyses, graphs, or other results generated by the Software or
|
|
160
|
+
by any AI Agent through use of the Software. Outputs constitute Confidential
|
|
161
|
+
Information, are licensed (not assigned) to Licensee solely for the
|
|
162
|
+
Authorized Purpose, and remain subject to every restriction in this
|
|
163
|
+
Agreement. Licensee obtains no right to use Outputs to train, evaluate, or
|
|
164
|
+
improve any AI Agent, model, or competing system.
|
|
165
|
+
|
|
166
|
+
4.7 Disclosure of Agentic Use. Upon Licensor's request, Licensee shall disclose
|
|
167
|
+
whether, and the manner in which, any AI Agent has accessed or used the
|
|
168
|
+
Software, and shall cooperate with any audit under Section 8 directed at
|
|
169
|
+
such use.
|
|
170
|
+
|
|
171
|
+
--------------------------------------------------------------------------------
|
|
172
|
+
5. OWNERSHIP
|
|
173
|
+
--------------------------------------------------------------------------------
|
|
174
|
+
|
|
175
|
+
5.1 The Software is licensed, not sold. Licensor and its licensors retain all
|
|
176
|
+
right, title, and interest in and to the Software and all intellectual
|
|
177
|
+
property rights therein. Licensee acquires no ownership interest of any
|
|
178
|
+
kind. All feedback, suggestions, and ideas provided by Licensee — whether
|
|
179
|
+
authored by a human or generated by an AI Agent — are hereby assigned to
|
|
180
|
+
Licensor without restriction or compensation.
|
|
181
|
+
|
|
182
|
+
--------------------------------------------------------------------------------
|
|
183
|
+
6. CONFIDENTIALITY
|
|
184
|
+
--------------------------------------------------------------------------------
|
|
185
|
+
|
|
186
|
+
6.1 Licensee shall hold the Software and all Confidential Information in strict
|
|
187
|
+
confidence, shall not disclose it to any person or AI Agent other than
|
|
188
|
+
Licensee's employees with a need to know who are bound by written
|
|
189
|
+
obligations at least as protective as this Agreement, and shall use it
|
|
190
|
+
solely for the Authorized Purpose. Licensee shall protect it using no less
|
|
191
|
+
than the degree of care it uses for its own most sensitive information, and
|
|
192
|
+
in no event less than a reasonable degree of care. Licensee shall not input,
|
|
193
|
+
expose, or transmit the Software or Confidential Information to any third-
|
|
194
|
+
party AI Agent or service that would acquire rights in, or use for training,
|
|
195
|
+
the material so disclosed.
|
|
196
|
+
|
|
197
|
+
--------------------------------------------------------------------------------
|
|
198
|
+
7. TERM AND TERMINATION
|
|
199
|
+
--------------------------------------------------------------------------------
|
|
200
|
+
|
|
201
|
+
7.1 This Agreement and the license commence on the date Licensee first accesses
|
|
202
|
+
the Software and continue only for the period expressly authorized in
|
|
203
|
+
writing by Licensor (the "Term"). If no period is stated, the Term is
|
|
204
|
+
thirty (30) days.
|
|
205
|
+
|
|
206
|
+
7.2 Licensor may terminate or suspend this Agreement and the license at any
|
|
207
|
+
time, for any reason or no reason, with or without notice, in its sole
|
|
208
|
+
discretion. This license is revocable at will.
|
|
209
|
+
|
|
210
|
+
7.3 This Agreement terminates automatically and immediately upon any breach by
|
|
211
|
+
Licensee, without notice and without opportunity to cure.
|
|
212
|
+
|
|
213
|
+
7.4 Upon any expiration or termination, all rights granted cease immediately,
|
|
214
|
+
and Licensee shall, within five (5) days, cease all use, permanently delete
|
|
215
|
+
or destroy all copies of the Software (including the archival copy, all
|
|
216
|
+
Outputs, and all derivatives and extracts), purge the Software and Outputs
|
|
217
|
+
from any AI Agent context, cache, or store, and certify such destruction in
|
|
218
|
+
writing to Licensor upon request. Sections 1, 3, 4, 5, 6, 7.4, and 8
|
|
219
|
+
through 13 survive termination.
|
|
220
|
+
|
|
221
|
+
--------------------------------------------------------------------------------
|
|
222
|
+
8. AUDIT
|
|
223
|
+
--------------------------------------------------------------------------------
|
|
224
|
+
|
|
225
|
+
8.1 Licensor may, upon reasonable notice, audit Licensee's use of the Software,
|
|
226
|
+
including by inspecting records and systems and reviewing AI Agent logs and
|
|
227
|
+
access histories, to verify compliance. Licensee shall cooperate. Any
|
|
228
|
+
unauthorized use revealed by an audit constitutes a material breach.
|
|
229
|
+
|
|
230
|
+
--------------------------------------------------------------------------------
|
|
231
|
+
9. DISCLAIMER OF WARRANTIES
|
|
232
|
+
--------------------------------------------------------------------------------
|
|
233
|
+
|
|
234
|
+
9.1 THE SOFTWARE IS PROVIDED "AS IS" AND "AS AVAILABLE," WITH ALL FAULTS AND
|
|
235
|
+
WITHOUT WARRANTY OF ANY KIND. TO THE MAXIMUM EXTENT PERMITTED BY LAW,
|
|
236
|
+
LICENSOR DISCLAIMS ALL WARRANTIES, WHETHER EXPRESS, IMPLIED, STATUTORY, OR
|
|
237
|
+
OTHERWISE, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR
|
|
238
|
+
A PARTICULAR PURPOSE, TITLE, ACCURACY, AND NON-INFRINGEMENT, AND ANY
|
|
239
|
+
WARRANTY ARISING FROM COURSE OF DEALING OR USAGE OF TRADE. LICENSOR DOES NOT
|
|
240
|
+
WARRANT THAT THE SOFTWARE WILL BE UNINTERRUPTED, ERROR-FREE, OR SECURE, OR
|
|
241
|
+
THAT ANY OUTPUT GENERATED BY THE SOFTWARE OR BY ANY AI AGENT WILL BE
|
|
242
|
+
ACCURATE, COMPLETE, OR FIT FOR ANY PURPOSE.
|
|
243
|
+
|
|
244
|
+
--------------------------------------------------------------------------------
|
|
245
|
+
10. LIMITATION OF LIABILITY
|
|
246
|
+
--------------------------------------------------------------------------------
|
|
247
|
+
|
|
248
|
+
10.1 TO THE MAXIMUM EXTENT PERMITTED BY LAW, LICENSOR SHALL NOT BE LIABLE FOR
|
|
249
|
+
ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE
|
|
250
|
+
DAMAGES, OR FOR ANY LOSS OF PROFITS, REVENUE, DATA, OR GOODWILL, ARISING
|
|
251
|
+
OUT OF OR RELATING TO THIS AGREEMENT, THE SOFTWARE, OR ANY ACTION TAKEN BY
|
|
252
|
+
AN AI AGENT, REGARDLESS OF THE THEORY OF LIABILITY AND EVEN IF ADVISED OF
|
|
253
|
+
THE POSSIBILITY OF SUCH DAMAGES.
|
|
254
|
+
|
|
255
|
+
10.2 LICENSOR'S TOTAL CUMULATIVE LIABILITY ARISING OUT OF OR RELATING TO THIS
|
|
256
|
+
AGREEMENT SHALL NOT EXCEED THE GREATER OF (A) THE FEES ACTUALLY PAID BY
|
|
257
|
+
LICENSEE TO LICENSOR FOR THE SOFTWARE IN THE THREE (3) MONTHS PRECEDING THE
|
|
258
|
+
CLAIM, OR (B) ONE HUNDRED U.S. DOLLARS (US$100).
|
|
259
|
+
|
|
260
|
+
--------------------------------------------------------------------------------
|
|
261
|
+
11. INDEMNIFICATION
|
|
262
|
+
--------------------------------------------------------------------------------
|
|
263
|
+
|
|
264
|
+
11.1 Licensee shall defend, indemnify, and hold harmless Licensor and its
|
|
265
|
+
officers, directors, employees, and agents from and against any and all
|
|
266
|
+
claims, damages, liabilities, costs, and expenses (including reasonable
|
|
267
|
+
attorneys' fees) arising out of or relating to Licensee's use of the
|
|
268
|
+
Software, any use of the Software by any AI Agent acting on Licensee's
|
|
269
|
+
behalf or via Licensee's credentials, or any breach of this Agreement.
|
|
270
|
+
|
|
271
|
+
--------------------------------------------------------------------------------
|
|
272
|
+
12. EXPORT, SANCTIONS, AND COMPLIANCE
|
|
273
|
+
--------------------------------------------------------------------------------
|
|
274
|
+
|
|
275
|
+
12.1 Licensee shall comply with all applicable export control, sanctions, and
|
|
276
|
+
anti-corruption laws and shall not export, re-export, or transfer the
|
|
277
|
+
Software to any prohibited destination, entity, or person, or use it for
|
|
278
|
+
any prohibited end use.
|
|
279
|
+
|
|
280
|
+
--------------------------------------------------------------------------------
|
|
281
|
+
13. GENERAL
|
|
282
|
+
--------------------------------------------------------------------------------
|
|
283
|
+
|
|
284
|
+
13.1 Governing Law; Venue. This Agreement is governed by the laws of the
|
|
285
|
+
Commonwealth of Pennsylvania, excluding its conflict-of-laws rules. The
|
|
286
|
+
parties submit to the exclusive jurisdiction of the state and federal
|
|
287
|
+
courts located in Pennsylvania.
|
|
288
|
+
|
|
289
|
+
13.2 Equitable Relief. Licensee acknowledges that any breach of Sections 2, 3,
|
|
290
|
+
4, or 6 would cause irreparable harm for which monetary damages are
|
|
291
|
+
inadequate, and that Licensor is entitled to injunctive relief without the
|
|
292
|
+
need to post bond.
|
|
293
|
+
|
|
294
|
+
13.3 Assignment. Licensee may not assign or transfer this Agreement or any
|
|
295
|
+
rights or obligations, by operation of law or otherwise, without
|
|
296
|
+
Licensor's prior written consent. Any attempted assignment in violation is
|
|
297
|
+
void. Licensor may freely assign.
|
|
298
|
+
|
|
299
|
+
13.4 No Waiver. No failure or delay by Licensor in exercising any right waives
|
|
300
|
+
it. Any waiver must be in a writing signed by Licensor.
|
|
301
|
+
|
|
302
|
+
13.5 Severability. If any provision is held unenforceable, it shall be modified
|
|
303
|
+
to the minimum extent necessary, and the remaining provisions remain in
|
|
304
|
+
full force.
|
|
305
|
+
|
|
306
|
+
13.6 Entire Agreement. Subject to Section 13.8, this Agreement, together
|
|
307
|
+
with any written authorization issued by Licensor, is the entire agreement
|
|
308
|
+
between the parties regarding the Software and supersedes all prior or
|
|
309
|
+
contemporaneous understandings. Any conflicting or additional terms
|
|
310
|
+
proposed by Licensee are rejected.
|
|
311
|
+
|
|
312
|
+
13.7 U.S. Government Rights. If Licensee is a U.S. Government entity, the
|
|
313
|
+
Software is "commercial computer software" and "commercial computer
|
|
314
|
+
software documentation," and any use, duplication, or disclosure is
|
|
315
|
+
subject to the restrictions of this Agreement to the extent permitted by
|
|
316
|
+
applicable Federal Acquisition Regulation and agency supplements.
|
|
317
|
+
|
|
318
|
+
13.8 Amendments; Updated Versions.
|
|
319
|
+
|
|
320
|
+
(a) Licensor may issue an amended or replacement version of this Agreement
|
|
321
|
+
(an "Updated Agreement"). To be effective as to Licensee, an Updated
|
|
322
|
+
Agreement must: (i) conspicuously identify itself as an updated version of
|
|
323
|
+
this Agreement and state its version number and effective date; (ii) be
|
|
324
|
+
provided to Licensee in full by a method reasonably calculated to give
|
|
325
|
+
Licensee notice; and (iii) be affirmatively accepted by Licensee through
|
|
326
|
+
a click-through acceptance, electronic signature, or other written
|
|
327
|
+
acceptance by a person authorized to bind Licensee. Licensor may condition
|
|
328
|
+
any renewal, extension, update, upgrade, or continued access to the
|
|
329
|
+
Software after the end of the then-current Term upon such acceptance.
|
|
330
|
+
|
|
331
|
+
(b) Upon Licensee's affirmative acceptance, the Updated Agreement
|
|
332
|
+
supersedes and replaces all prior versions of this Agreement between
|
|
333
|
+
Licensor and Licensee with respect to the Software, effective on the later
|
|
334
|
+
of the Updated Agreement's stated effective date or Licensee's acceptance
|
|
335
|
+
date. Unless the Updated Agreement expressly states otherwise, any then-
|
|
336
|
+
effective written authorization issued by Licensor remains in force only to
|
|
337
|
+
the extent it is consistent with the Updated Agreement.
|
|
338
|
+
|
|
339
|
+
(c) Until an Updated Agreement becomes effective under this Section 13.8,
|
|
340
|
+
the version of this Agreement previously accepted by Licensee remains
|
|
341
|
+
controlling, subject to Licensor's termination and suspension rights under
|
|
342
|
+
Section 7. Licensor shall retain a reasonably accessible record of each
|
|
343
|
+
version of this Agreement and the date on which Licensee accepted it.
|
|
344
|
+
|
|
345
|
+
================================================================================
|
|
346
|
+
For licensing inquiries, contact: legal@dataerai.com
|
|
347
|
+
Dataerai, Inc. — Center Valley, Pennsylvania, USA
|
|
348
|
+
================================================================================
|