@outputai/cli 0.9.3-next.5289bca.0 → 0.9.3-next.67c8141.0
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.
|
@@ -67,25 +67,19 @@ export interface Workflow {
|
|
|
67
67
|
aliases?: string[];
|
|
68
68
|
}
|
|
69
69
|
/**
|
|
70
|
-
*
|
|
70
|
+
* Available destinations for trace data
|
|
71
71
|
*/
|
|
72
72
|
export type TraceInfoDestinations = {
|
|
73
|
-
/**
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
local: string | null;
|
|
78
|
-
/**
|
|
79
|
-
* Remote trace location (e.g., S3 URI), or null if not saved remotely
|
|
80
|
-
* @nullable
|
|
81
|
-
*/
|
|
82
|
-
remote: string | null;
|
|
73
|
+
/** Absolute path to local trace file, omitted if not saved locally */
|
|
74
|
+
local?: string;
|
|
75
|
+
/** Remote trace location (e.g., S3 URI), omitted if not saved remotely */
|
|
76
|
+
remote?: string;
|
|
83
77
|
};
|
|
84
78
|
/**
|
|
85
79
|
* An object with information about the trace generated by the execution
|
|
86
80
|
*/
|
|
87
81
|
export interface TraceInfo {
|
|
88
|
-
/**
|
|
82
|
+
/** Available destinations for trace data */
|
|
89
83
|
destinations?: TraceInfoDestinations;
|
|
90
84
|
}
|
|
91
85
|
/**
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outputai/cli",
|
|
3
|
-
"version": "0.9.3-next.
|
|
3
|
+
"version": "0.9.3-next.67c8141.0",
|
|
4
4
|
"description": "CLI for Output.ai workflow generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"semver": "7.7.4",
|
|
39
39
|
"undici": "8.5.0",
|
|
40
40
|
"yaml": "^2.8.3",
|
|
41
|
-
"@outputai/
|
|
42
|
-
"@outputai/llm": "0.9.3-next.
|
|
43
|
-
"@outputai/
|
|
41
|
+
"@outputai/credentials": "0.9.3-next.67c8141.0",
|
|
42
|
+
"@outputai/llm": "0.9.3-next.67c8141.0",
|
|
43
|
+
"@outputai/evals": "0.9.3-next.67c8141.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/cli-progress": "3.11.6",
|