modelstat 0.0.34 → 0.0.36
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.
- package/LICENSE +87 -0
- package/dist/cli.mjs +410 -33
- package/dist/cli.mjs.map +1 -1
- package/package.json +18 -19
- package/vendor/tray-mac/build-app.sh +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
Copyright (c) 2026 ModelState Inc
|
|
2
|
+
|
|
3
|
+
Source-Available License
|
|
4
|
+
|
|
5
|
+
1. Grant of Rights
|
|
6
|
+
|
|
7
|
+
Subject to the terms of this License, you are granted a non-exclusive, worldwide,
|
|
8
|
+
non-transferable, non-sublicensable license to:
|
|
9
|
+
|
|
10
|
+
- View, read, and inspect the source code
|
|
11
|
+
- Build, modify, and run the software
|
|
12
|
+
- Use the software internally, including in production, solely to access or interact
|
|
13
|
+
with ModelState Inc’s hosted services
|
|
14
|
+
|
|
15
|
+
2. Permitted Use
|
|
16
|
+
|
|
17
|
+
You may use the software as a client, agent, or self-hosted component that connects
|
|
18
|
+
to and depends on ModelState Inc’s cloud or hosted services.
|
|
19
|
+
|
|
20
|
+
3. Restrictions
|
|
21
|
+
|
|
22
|
+
You may NOT, without explicit prior written permission from ModelState Inc:
|
|
23
|
+
|
|
24
|
+
- Use the software to provide a hosted, managed, or SaaS service to third parties
|
|
25
|
+
- Use the software in any product or service that competes with ModelState Inc
|
|
26
|
+
- Use the software to build or operate an alternative to ModelState Inc’s services
|
|
27
|
+
- Redistribute, sublicense, sell, license, or commercially exploit the software
|
|
28
|
+
- Offer the software (modified or unmodified) as part of a commercial offering
|
|
29
|
+
- Make the software available to third parties as a service
|
|
30
|
+
- Use the software for the benefit of third parties (including multi-tenant or shared environments)
|
|
31
|
+
- Circumvent or attempt to circumvent the limitations of this License
|
|
32
|
+
- Remove or alter any licensing, copyright, or attribution notices
|
|
33
|
+
|
|
34
|
+
4. Definition of Competing Service
|
|
35
|
+
|
|
36
|
+
“Competing Service” means any product or service that provides substantially similar
|
|
37
|
+
functionality to ModelState Inc’s offerings, including but not limited to:
|
|
38
|
+
|
|
39
|
+
- AI or LLM usage tracking, monitoring, or observability systems
|
|
40
|
+
- Model analytics platforms or dashboards
|
|
41
|
+
- Inference tracking, logging, or telemetry pipelines
|
|
42
|
+
- Evaluation, benchmarking, or quality analysis systems for AI/ML models
|
|
43
|
+
- Cost tracking, performance tracking, or optimization systems for model inference
|
|
44
|
+
- Any system that collects, processes, analyzes, or visualizes usage or behavior of AI or machine learning models, including large language models (LLMs), when offered as a product or service
|
|
45
|
+
|
|
46
|
+
5. Internal Use
|
|
47
|
+
|
|
48
|
+
Use of the software is permitted only for your internal business or personal use,
|
|
49
|
+
and not for the benefit of third parties.
|
|
50
|
+
|
|
51
|
+
6. Network Use Restriction
|
|
52
|
+
|
|
53
|
+
You may not use the software to expose APIs, endpoints, dashboards, or services to external
|
|
54
|
+
users except as part of accessing ModelState Inc’s services.
|
|
55
|
+
|
|
56
|
+
7. Data Extraction Restriction
|
|
57
|
+
|
|
58
|
+
You may not use the software to replicate, extract, reverse engineer, or reconstruct
|
|
59
|
+
ModelState Inc’s service behavior, APIs, data models, or system design for the purpose
|
|
60
|
+
of building, improving, or operating a competing system or service.
|
|
61
|
+
|
|
62
|
+
8. Ownership
|
|
63
|
+
|
|
64
|
+
All rights, title, and interest in the software remain exclusively with ModelState Inc.
|
|
65
|
+
The software is licensed, not sold.
|
|
66
|
+
|
|
67
|
+
9. Contributions
|
|
68
|
+
|
|
69
|
+
Unless explicitly agreed otherwise in writing, any contributions submitted to the software
|
|
70
|
+
grant ModelState Inc a perpetual, irrevocable, worldwide, royalty-free license to use,
|
|
71
|
+
modify, and distribute those contributions.
|
|
72
|
+
|
|
73
|
+
10. Termination
|
|
74
|
+
|
|
75
|
+
This License terminates automatically if you violate any of its terms.
|
|
76
|
+
Upon termination, you must immediately cease all use and delete all copies of the software.
|
|
77
|
+
|
|
78
|
+
11. Disclaimer of Warranty
|
|
79
|
+
|
|
80
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
81
|
+
EXPRESS OR IMPLIED.
|
|
82
|
+
|
|
83
|
+
12. Limitation of Liability
|
|
84
|
+
|
|
85
|
+
IN NO EVENT SHALL MODELSTATE INC BE LIABLE FOR ANY CLAIM, DAMAGES,
|
|
86
|
+
OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE
|
|
87
|
+
OR ITS USE OR OTHER DEALINGS IN THE SOFTWARE.
|