@langfuse/client 4.4.10-alpha.3 → 4.5.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.
- package/dist/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -505,7 +505,8 @@ var ExperimentManager = class {
|
|
|
505
505
|
const params2 = {
|
|
506
506
|
input: item.input,
|
|
507
507
|
expectedOutput: item.expectedOutput,
|
|
508
|
-
output
|
|
508
|
+
output,
|
|
509
|
+
metadata: item.metadata
|
|
509
510
|
};
|
|
510
511
|
return evaluator(params2).then((result) => {
|
|
511
512
|
return Array.isArray(result) ? result : [result];
|