@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
- * File destinations for trace data
70
+ * Available destinations for trace data
71
71
  */
72
72
  export type TraceInfoDestinations = {
73
- /**
74
- * Absolute path to local trace file, or null if not saved locally
75
- * @nullable
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
- /** File destinations for trace data */
82
+ /** Available destinations for trace data */
89
83
  destinations?: TraceInfoDestinations;
90
84
  }
91
85
  /**
@@ -80,7 +80,7 @@ services:
80
80
  condition: service_healthy
81
81
  worker:
82
82
  condition: service_healthy
83
- image: outputai/api:${OUTPUT_API_VERSION:-0.9.3-next.5289bca.0}
83
+ image: outputai/api:${OUTPUT_API_VERSION:-0.9.3-next.67c8141.0}
84
84
  init: true
85
85
  networks:
86
86
  - main
@@ -1,3 +1,3 @@
1
1
  {
2
- "framework": "0.9.3-next.5289bca.0"
2
+ "framework": "0.9.3-next.67c8141.0"
3
3
  }
@@ -1597,5 +1597,5 @@
1597
1597
  ]
1598
1598
  }
1599
1599
  },
1600
- "version": "0.9.3-next.5289bca.0"
1600
+ "version": "0.9.3-next.67c8141.0"
1601
1601
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@outputai/cli",
3
- "version": "0.9.3-next.5289bca.0",
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/evals": "0.9.3-next.5289bca.0",
42
- "@outputai/llm": "0.9.3-next.5289bca.0",
43
- "@outputai/credentials": "0.9.3-next.5289bca.0"
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",