agentv 4.8.0 → 4.9.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/{chunk-QBZJSQXV.js → chunk-6HQCMEGO.js} +5 -5
- package/dist/{chunk-QBZJSQXV.js.map → chunk-6HQCMEGO.js.map} +1 -1
- package/dist/{chunk-H4GQXK5M.js → chunk-7K5LYK5B.js} +232 -136
- package/dist/chunk-7K5LYK5B.js.map +1 -0
- package/dist/{chunk-A6W3KOCS.js → chunk-MTXZDEVR.js} +53 -11
- package/dist/chunk-MTXZDEVR.js.map +1 -0
- package/dist/cli.js +3 -3
- package/dist/{dist-QXVR2ZRH.js → dist-2VDI64IM.js} +4 -2
- package/dist/index.js +3 -3
- package/dist/{interactive-IRYNIFCY.js → interactive-UDDXUKAU.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-A6W3KOCS.js.map +0 -1
- package/dist/chunk-H4GQXK5M.js.map +0 -1
- /package/dist/{dist-QXVR2ZRH.js.map → dist-2VDI64IM.js.map} +0 -0
- /package/dist/{interactive-IRYNIFCY.js.map → interactive-UDDXUKAU.js.map} +0 -0
|
@@ -32,12 +32,12 @@ import {
|
|
|
32
32
|
subscribeToCopilotCliLogEntries,
|
|
33
33
|
subscribeToCopilotSdkLogEntries,
|
|
34
34
|
subscribeToPiLogEntries
|
|
35
|
-
} from "./chunk-
|
|
35
|
+
} from "./chunk-7K5LYK5B.js";
|
|
36
36
|
|
|
37
37
|
// package.json
|
|
38
38
|
var package_default = {
|
|
39
39
|
name: "agentv",
|
|
40
|
-
version: "4.
|
|
40
|
+
version: "4.9.0",
|
|
41
41
|
description: "CLI entry point for AgentV",
|
|
42
42
|
type: "module",
|
|
43
43
|
repository: {
|
|
@@ -4514,7 +4514,7 @@ async function runEvalCommand(input) {
|
|
|
4514
4514
|
const useFileExport = !!options.otelFile;
|
|
4515
4515
|
if (options.exportOtel || useFileExport) {
|
|
4516
4516
|
try {
|
|
4517
|
-
const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-
|
|
4517
|
+
const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-2VDI64IM.js");
|
|
4518
4518
|
let endpoint = process.env.OTEL_EXPORTER_OTLP_ENDPOINT;
|
|
4519
4519
|
let headers = {};
|
|
4520
4520
|
if (options.otelBackend) {
|
|
@@ -4708,7 +4708,7 @@ async function runEvalCommand(input) {
|
|
|
4708
4708
|
const activeTestFiles = resolvedTestFiles.filter((f) => fileMetadata.has(f));
|
|
4709
4709
|
let transcriptProviderFactory;
|
|
4710
4710
|
if (options.transcript) {
|
|
4711
|
-
const { TranscriptProvider } = await import("./dist-
|
|
4711
|
+
const { TranscriptProvider } = await import("./dist-2VDI64IM.js");
|
|
4712
4712
|
const transcriptProvider = await TranscriptProvider.fromFile(options.transcript);
|
|
4713
4713
|
const totalTests = [...fileMetadata.values()].reduce(
|
|
4714
4714
|
(sum, meta) => sum + meta.testCases.length,
|
|
@@ -4984,4 +4984,4 @@ export {
|
|
|
4984
4984
|
getCategories,
|
|
4985
4985
|
filterByCategory
|
|
4986
4986
|
};
|
|
4987
|
-
//# sourceMappingURL=chunk-
|
|
4987
|
+
//# sourceMappingURL=chunk-6HQCMEGO.js.map
|