@llmops/cli 1.0.0-beta.22 → 1.0.0-beta.24
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/dist/index.mjs +4 -3
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
#!/usr/bin/env node
|
|
3
2
|
import { boolean, command, run, string } from "@drizzle-team/brocli";
|
|
4
3
|
import { logger } from "@llmops/core";
|
|
5
4
|
import { existsSync, mkdirSync, readFileSync, readdirSync, rmSync, statSync } from "node:fs";
|
|
@@ -135,7 +134,9 @@ async function bundleAndRun(file, env) {
|
|
|
135
134
|
"@llmops/core/*",
|
|
136
135
|
"openai",
|
|
137
136
|
"esbuild",
|
|
138
|
-
"fsevents"
|
|
137
|
+
"fsevents",
|
|
138
|
+
"dotenv",
|
|
139
|
+
"dotenv/*"
|
|
139
140
|
],
|
|
140
141
|
treeShaking: true,
|
|
141
142
|
sourcemap: false,
|
|
@@ -159,7 +160,7 @@ const evalCommand = command({
|
|
|
159
160
|
name: "eval",
|
|
160
161
|
desc: "Run evaluation files",
|
|
161
162
|
options: {
|
|
162
|
-
target: string().default("./evals").desc("File or directory to run. Default: ./evals"),
|
|
163
|
+
target: string().default("./evals").desc("File or directory to run. Default: ./evals").alias("t"),
|
|
163
164
|
outputDir: string().default("./llmops-evals").desc("Output directory for results").alias("o"),
|
|
164
165
|
json: boolean().desc("Output results as JSON to stdout").alias("j")
|
|
165
166
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@llmops/cli",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.24",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "LLMOps CLI - A pluggable LLMOps toolkit for TypeScript teams",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"esbuild": "^0.25.0",
|
|
38
38
|
"prompts": "^2.4.2",
|
|
39
39
|
"yocto-spinner": "^1.0.0",
|
|
40
|
-
"@llmops/core": "^1.0.0-beta.
|
|
41
|
-
"@llmops/sdk": "^1.0.0-beta.
|
|
40
|
+
"@llmops/core": "^1.0.0-beta.24",
|
|
41
|
+
"@llmops/sdk": "^1.0.0-beta.24"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/pg": "^8.15.6",
|