agentv 3.2.2 → 3.2.4
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/{agentv-provider-5CJVBBGG-2XVZBW7L.js → agentv-provider-HDSAUUEF-LUBMM7TH.js} +2 -2
- package/dist/{chunk-6GSYTMXD.js → chunk-AR3QEKXH.js} +8631 -14786
- package/dist/chunk-AR3QEKXH.js.map +1 -0
- package/dist/{chunk-IUNL3OJU.js → chunk-E5M4NOFQ.js} +36 -4
- package/dist/chunk-E5M4NOFQ.js.map +1 -0
- package/dist/{chunk-3L2L5GIL.js → chunk-HQDCIXVH.js} +3 -3
- package/dist/{chunk-3L2L5GIL.js.map → chunk-HQDCIXVH.js.map} +1 -1
- package/dist/chunk-JFD3TI3N.js +456 -0
- package/dist/chunk-JFD3TI3N.js.map +1 -0
- package/dist/{chunk-LNRX7YV5.js → chunk-O3KO5MUH.js} +4 -4
- package/dist/{chunk-QHH6QXNY.js → chunk-VBGYESW7.js} +10458 -3749
- package/dist/chunk-VBGYESW7.js.map +1 -0
- package/dist/cli.js +5 -5
- package/dist/{dist-NOJMJ5CF.js → dist-WJ4A7XQQ.js} +4 -4
- package/dist/index.js +5 -5
- package/dist/{interactive-LMQO2QAX.js → interactive-VWMIIF4F.js} +5 -5
- package/dist/templates/.agentv/config.yaml +0 -5
- package/dist/templates/.agentv/targets.yaml +16 -0
- package/dist/{token-POXF46NU.js → token-OWTDW6LT.js} +8 -8
- package/dist/token-OWTDW6LT.js.map +1 -0
- package/dist/{token-util-6GWYZWGE.js → token-util-S5R2C23V.js} +3 -3
- package/package.json +3 -2
- package/dist/chunk-6GSYTMXD.js.map +0 -1
- package/dist/chunk-BL4PVUAT.js +0 -261
- package/dist/chunk-BL4PVUAT.js.map +0 -1
- package/dist/chunk-IUNL3OJU.js.map +0 -1
- package/dist/chunk-QHH6QXNY.js.map +0 -1
- package/dist/token-POXF46NU.js.map +0 -1
- /package/dist/{agentv-provider-5CJVBBGG-2XVZBW7L.js.map → agentv-provider-HDSAUUEF-LUBMM7TH.js.map} +0 -0
- /package/dist/{chunk-LNRX7YV5.js.map → chunk-O3KO5MUH.js.map} +0 -0
- /package/dist/{dist-NOJMJ5CF.js.map → dist-WJ4A7XQQ.js.map} +0 -0
- /package/dist/{interactive-LMQO2QAX.js.map → interactive-VWMIIF4F.js.map} +0 -0
- /package/dist/{token-util-6GWYZWGE.js.map → token-util-S5R2C23V.js.map} +0 -0
|
@@ -25,12 +25,12 @@ import {
|
|
|
25
25
|
subscribeToCopilotCliLogEntries,
|
|
26
26
|
subscribeToCopilotSdkLogEntries,
|
|
27
27
|
subscribeToPiLogEntries
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-VBGYESW7.js";
|
|
29
29
|
|
|
30
30
|
// package.json
|
|
31
31
|
var package_default = {
|
|
32
32
|
name: "agentv",
|
|
33
|
-
version: "3.2.
|
|
33
|
+
version: "3.2.4",
|
|
34
34
|
description: "CLI entry point for AgentV",
|
|
35
35
|
type: "module",
|
|
36
36
|
repository: {
|
|
@@ -58,6 +58,7 @@ var package_default = {
|
|
|
58
58
|
"test:watch": "bun test --watch"
|
|
59
59
|
},
|
|
60
60
|
dependencies: {
|
|
61
|
+
"@ai-sdk/openai": "^3.0.0",
|
|
61
62
|
"@anthropic-ai/claude-agent-sdk": "^0.2.49",
|
|
62
63
|
"@github/copilot-sdk": "^0.1.25",
|
|
63
64
|
"@inquirer/prompts": "^8.2.1",
|
|
@@ -2612,6 +2613,33 @@ var AZURE_SETTINGS = /* @__PURE__ */ new Set([
|
|
|
2612
2613
|
"max_output_tokens",
|
|
2613
2614
|
"maxTokens"
|
|
2614
2615
|
]);
|
|
2616
|
+
var OPENAI_SETTINGS = /* @__PURE__ */ new Set([
|
|
2617
|
+
...COMMON_SETTINGS,
|
|
2618
|
+
...RETRY_SETTINGS,
|
|
2619
|
+
"endpoint",
|
|
2620
|
+
"base_url",
|
|
2621
|
+
"baseUrl",
|
|
2622
|
+
"api_key",
|
|
2623
|
+
"apiKey",
|
|
2624
|
+
"model",
|
|
2625
|
+
"deployment",
|
|
2626
|
+
"variant",
|
|
2627
|
+
"temperature",
|
|
2628
|
+
"max_output_tokens",
|
|
2629
|
+
"maxTokens"
|
|
2630
|
+
]);
|
|
2631
|
+
var OPENROUTER_SETTINGS = /* @__PURE__ */ new Set([
|
|
2632
|
+
...COMMON_SETTINGS,
|
|
2633
|
+
...RETRY_SETTINGS,
|
|
2634
|
+
"api_key",
|
|
2635
|
+
"apiKey",
|
|
2636
|
+
"model",
|
|
2637
|
+
"deployment",
|
|
2638
|
+
"variant",
|
|
2639
|
+
"temperature",
|
|
2640
|
+
"max_output_tokens",
|
|
2641
|
+
"maxTokens"
|
|
2642
|
+
]);
|
|
2615
2643
|
var ANTHROPIC_SETTINGS = /* @__PURE__ */ new Set([
|
|
2616
2644
|
...COMMON_SETTINGS,
|
|
2617
2645
|
...RETRY_SETTINGS,
|
|
@@ -2751,6 +2779,10 @@ var CLAUDE_SETTINGS = /* @__PURE__ */ new Set([
|
|
|
2751
2779
|
function getKnownSettings(provider) {
|
|
2752
2780
|
const normalizedProvider = provider.toLowerCase();
|
|
2753
2781
|
switch (normalizedProvider) {
|
|
2782
|
+
case "openai":
|
|
2783
|
+
return OPENAI_SETTINGS;
|
|
2784
|
+
case "openrouter":
|
|
2785
|
+
return OPENROUTER_SETTINGS;
|
|
2754
2786
|
case "azure":
|
|
2755
2787
|
case "azure-openai":
|
|
2756
2788
|
return AZURE_SETTINGS;
|
|
@@ -3938,7 +3970,7 @@ async function runEvalCommand(input) {
|
|
|
3938
3970
|
const useFileExport = !!(options.otelFile || options.traceFile);
|
|
3939
3971
|
if (options.exportOtel || useFileExport) {
|
|
3940
3972
|
try {
|
|
3941
|
-
const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-
|
|
3973
|
+
const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-WJ4A7XQQ.js");
|
|
3942
3974
|
let endpoint = process.env.OTEL_EXPORTER_OTLP_ENDPOINT;
|
|
3943
3975
|
let headers = {};
|
|
3944
3976
|
if (options.otelBackend) {
|
|
@@ -4260,4 +4292,4 @@ export {
|
|
|
4260
4292
|
selectTarget,
|
|
4261
4293
|
runEvalCommand
|
|
4262
4294
|
};
|
|
4263
|
-
//# sourceMappingURL=chunk-
|
|
4295
|
+
//# sourceMappingURL=chunk-E5M4NOFQ.js.map
|