@empiricalrun/test-gen 0.36.5 → 0.36.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @empiricalrun/test-gen
2
2
 
3
+ ## 0.36.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 63f1398: fix: triggerHintsFlow trace span nesting
8
+ - Updated dependencies [42b4490]
9
+ - @empiricalrun/llm@0.9.24
10
+
3
11
  ## 0.36.5
4
12
 
5
13
  ### Patch Changes
@@ -246,7 +246,7 @@ async function createTestUsingMasterAgent({ task, page, testCase, options, scope
246
246
  let shouldTriggerHintsFlow;
247
247
  let hintsExecutionCompletion;
248
248
  if (useHints) {
249
- const triggerHintsFlowSpan = trace?.span({
249
+ const triggerHintsFlowSpan = masterAgentActionSpan?.span({
250
250
  name: "trigger-hints-flow",
251
251
  input: {
252
252
  outputFromGetNextAction: output,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/test-gen",
3
- "version": "0.36.5",
3
+ "version": "0.36.6",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -44,7 +44,7 @@
44
44
  "ts-morph": "^23.0.0",
45
45
  "tsx": "^4.16.2",
46
46
  "typescript": "^5.3.3",
47
- "@empiricalrun/llm": "^0.9.23",
47
+ "@empiricalrun/llm": "^0.9.24",
48
48
  "@empiricalrun/r2-uploader": "^0.3.6",
49
49
  "@empiricalrun/reporter": "^0.21.3"
50
50
  },