agentv 3.9.2 → 3.10.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-JGMJL2LV.js → chunk-DDMAQT5P.js} +5 -5
- package/dist/chunk-DDMAQT5P.js.map +1 -0
- package/dist/{chunk-6ZAFWUBT.js → chunk-DJ6FJ6J4.js} +4 -4
- package/dist/{chunk-OIVGGWJ3.js → chunk-X3KJVUAB.js} +18 -12
- package/dist/chunk-X3KJVUAB.js.map +1 -0
- package/dist/cli.js +3 -3
- package/dist/{dist-PUPHGVKL.js → dist-DJFWBJNJ.js} +2 -2
- package/dist/index.js +3 -3
- package/dist/{interactive-BD56NB23.js → interactive-ST4ZSRK4.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-JGMJL2LV.js.map +0 -1
- package/dist/chunk-OIVGGWJ3.js.map +0 -1
- /package/dist/{chunk-6ZAFWUBT.js.map → chunk-DJ6FJ6J4.js.map} +0 -0
- /package/dist/{dist-PUPHGVKL.js.map → dist-DJFWBJNJ.js.map} +0 -0
- /package/dist/{interactive-BD56NB23.js.map → interactive-ST4ZSRK4.js.map} +0 -0
|
@@ -27,12 +27,12 @@ import {
|
|
|
27
27
|
subscribeToCopilotCliLogEntries,
|
|
28
28
|
subscribeToCopilotSdkLogEntries,
|
|
29
29
|
subscribeToPiLogEntries
|
|
30
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-X3KJVUAB.js";
|
|
31
31
|
|
|
32
32
|
// package.json
|
|
33
33
|
var package_default = {
|
|
34
34
|
name: "agentv",
|
|
35
|
-
version: "3.
|
|
35
|
+
version: "3.10.0",
|
|
36
36
|
description: "CLI entry point for AgentV",
|
|
37
37
|
type: "module",
|
|
38
38
|
repository: {
|
|
@@ -3038,7 +3038,7 @@ async function validateTargetsFile(filePath) {
|
|
|
3038
3038
|
let parsed;
|
|
3039
3039
|
try {
|
|
3040
3040
|
const content = await readFile32(absolutePath, "utf8");
|
|
3041
|
-
parsed = parse3(content);
|
|
3041
|
+
parsed = interpolateEnv(parse3(content), process.env);
|
|
3042
3042
|
} catch (error) {
|
|
3043
3043
|
errors.push({
|
|
3044
3044
|
severity: "error",
|
|
@@ -4156,7 +4156,7 @@ async function runEvalCommand(input) {
|
|
|
4156
4156
|
const useFileExport = !!(options.otelFile || options.traceFile);
|
|
4157
4157
|
if (options.exportOtel || useFileExport) {
|
|
4158
4158
|
try {
|
|
4159
|
-
const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-
|
|
4159
|
+
const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-DJFWBJNJ.js");
|
|
4160
4160
|
let endpoint = process.env.OTEL_EXPORTER_OTLP_ENDPOINT;
|
|
4161
4161
|
let headers = {};
|
|
4162
4162
|
if (options.otelBackend) {
|
|
@@ -4501,4 +4501,4 @@ export {
|
|
|
4501
4501
|
selectTarget,
|
|
4502
4502
|
runEvalCommand
|
|
4503
4503
|
};
|
|
4504
|
-
//# sourceMappingURL=chunk-
|
|
4504
|
+
//# sourceMappingURL=chunk-DDMAQT5P.js.map
|