@llmops/cli 0.1.0-beta.2 → 0.1.0-beta.7
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/README.md +10 -0
- package/package.json +11 -3
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<picture>
|
|
3
|
+
<source srcset="https://github.com/llmops-build/llmops/raw/main/llmops-header-dark.png" media="(prefers-color-scheme: dark)">
|
|
4
|
+
<source srcset="https://github.com/llmops-build/llmops/raw/main/llmops-header.png" media="(prefers-color-scheme: light)">
|
|
5
|
+
<img src="https://github.com/llmops-build/llmops/raw/main/llmops-header.png" alt="LLMOps Header">
|
|
6
|
+
</picture>
|
|
7
|
+
<h2 align="center">
|
|
8
|
+
LLMOps
|
|
9
|
+
</h2>
|
|
10
|
+
</p>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@llmops/cli",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "LLMOps CLI - A pluggable LLMOps toolkit for TypeScript teams",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -20,9 +20,17 @@
|
|
|
20
20
|
"main": "./dist/index.mjs",
|
|
21
21
|
"module": "./dist/index.mjs",
|
|
22
22
|
"types": "./dist/index.d.mts",
|
|
23
|
+
"exports": "./dist/index.mjs",
|
|
23
24
|
"bin": {
|
|
25
|
+
"@llmops/cli": "./dist/index.mjs",
|
|
24
26
|
"llmops": "./dist/index.mjs"
|
|
25
27
|
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public",
|
|
30
|
+
"executableFiles": [
|
|
31
|
+
"./dist/index.mjs"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
26
34
|
"keywords": [
|
|
27
35
|
"llmops",
|
|
28
36
|
"cli",
|
|
@@ -37,8 +45,8 @@
|
|
|
37
45
|
"kysely": "^0.28.8",
|
|
38
46
|
"prompts": "^2.4.2",
|
|
39
47
|
"yocto-spinner": "^1.0.0",
|
|
40
|
-
"@llmops/core": "0.1.0-beta.
|
|
41
|
-
"@llmops/sdk": "0.1.0-beta.
|
|
48
|
+
"@llmops/core": "0.1.0-beta.7",
|
|
49
|
+
"@llmops/sdk": "0.1.0-beta.7"
|
|
42
50
|
},
|
|
43
51
|
"devDependencies": {
|
|
44
52
|
"@types/pg": "^8.15.6",
|