orchestrated 0.1.17 → 0.1.18
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/index.js +3 -2
- package/index.js.map +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -118257,7 +118257,8 @@ async function evaluateDataCase(dataCase, evaluator, _ctx, options) {
|
|
|
118257
118257
|
expected: dataCase.expected,
|
|
118258
118258
|
tags: dataCase.tags,
|
|
118259
118259
|
id: caseId,
|
|
118260
|
-
client: client2
|
|
118260
|
+
client: client2,
|
|
118261
|
+
model: options.execute === "sync" && options.batchProcessor === "BEDROCK_OPENAI" ? _ctx.state.bedrockModelId : undefined
|
|
118261
118262
|
};
|
|
118262
118263
|
const fieldsToExclude = new Set(["state", "ctx", "tags", "id", "client"]);
|
|
118263
118264
|
const argsForStorage = Object.fromEntries(Object.entries(scorerArgs).filter(([key]) => !fieldsToExclude.has(key)));
|
|
@@ -119014,4 +119015,4 @@ export {
|
|
|
119014
119015
|
Behavioral
|
|
119015
119016
|
};
|
|
119016
119017
|
|
|
119017
|
-
//# debugId=
|
|
119018
|
+
//# debugId=31E51C8DF22CA45F64756E2164756E21
|