agentv 2.18.3 → 2.19.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/README.md +2 -2
- package/dist/{chunk-3WNB7XKU.js → chunk-4MSAOMCC.js} +4 -4
- package/dist/{chunk-3WNB7XKU.js.map → chunk-4MSAOMCC.js.map} +1 -1
- package/dist/{chunk-XKIJ4ATV.js → chunk-GC6T3RD4.js} +129 -63
- package/dist/chunk-GC6T3RD4.js.map +1 -0
- package/dist/{chunk-BM77B57R.js → chunk-XTYMR4I5.js} +53 -10
- package/dist/chunk-XTYMR4I5.js.map +1 -0
- package/dist/cli.js +3 -3
- package/dist/{dist-4VCI5NDA.js → dist-MQBGD6LP.js} +2 -2
- package/dist/index.js +3 -3
- package/dist/{interactive-NEHIYZ2F.js → interactive-3TDBCSDW.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-BM77B57R.js.map +0 -1
- package/dist/chunk-XKIJ4ATV.js.map +0 -1
- /package/dist/{dist-4VCI5NDA.js.map → dist-MQBGD6LP.js.map} +0 -0
- /package/dist/{interactive-NEHIYZ2F.js.map → interactive-3TDBCSDW.js.map} +0 -0
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ tests:
|
|
|
61
61
|
assert:
|
|
62
62
|
- name: math_check
|
|
63
63
|
type: code-judge
|
|
64
|
-
|
|
64
|
+
command: ./validators/check_math.py
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
**5. Run the eval:**
|
|
@@ -236,7 +236,7 @@ Reference evaluators in your eval file:
|
|
|
236
236
|
assert:
|
|
237
237
|
- name: my_validator
|
|
238
238
|
type: code-judge
|
|
239
|
-
|
|
239
|
+
command: ./validators/check_answer.py
|
|
240
240
|
```
|
|
241
241
|
|
|
242
242
|
For complete templates, examples, and evaluator patterns, see: [custom-evaluators](https://agentv.dev/evaluators/custom-evaluators/)
|
|
@@ -25,12 +25,12 @@ import {
|
|
|
25
25
|
subscribeToCopilotCliLogEntries,
|
|
26
26
|
subscribeToCopilotSdkLogEntries,
|
|
27
27
|
subscribeToPiLogEntries
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-XTYMR4I5.js";
|
|
29
29
|
|
|
30
30
|
// package.json
|
|
31
31
|
var package_default = {
|
|
32
32
|
name: "agentv",
|
|
33
|
-
version: "2.
|
|
33
|
+
version: "2.19.0",
|
|
34
34
|
description: "CLI entry point for AgentV",
|
|
35
35
|
type: "module",
|
|
36
36
|
repository: {
|
|
@@ -3048,7 +3048,7 @@ async function runEvalCommand(input) {
|
|
|
3048
3048
|
const useFileExport = !!(options.otelFile || options.traceFile);
|
|
3049
3049
|
if (options.exportOtel || useFileExport) {
|
|
3050
3050
|
try {
|
|
3051
|
-
const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-
|
|
3051
|
+
const { OtelTraceExporter, OTEL_BACKEND_PRESETS } = await import("./dist-MQBGD6LP.js");
|
|
3052
3052
|
let endpoint = process.env.OTEL_EXPORTER_OTLP_ENDPOINT;
|
|
3053
3053
|
let headers = {};
|
|
3054
3054
|
if (options.otelBackend) {
|
|
@@ -3335,4 +3335,4 @@ export {
|
|
|
3335
3335
|
selectTarget,
|
|
3336
3336
|
runEvalCommand
|
|
3337
3337
|
};
|
|
3338
|
-
//# sourceMappingURL=chunk-
|
|
3338
|
+
//# sourceMappingURL=chunk-4MSAOMCC.js.map
|