@veryfront/ext-eval-report-http 0.1.1186 → 0.1.1190

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.
Files changed (2) hide show
  1. package/README.md +16 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -18,9 +18,23 @@ scores, redaction policy, and optional trace correlation. Do not use OTLP
18
18
  runtime telemetry env vars to route eval reports; `OTEL_*` settings only control
19
19
  runtime trace and metric export.
20
20
 
21
- ## Installation
21
+ ## Activation
22
22
 
23
- Add the extension to your project's `veryfront.config.ts`:
23
+ Source and compiled Veryfront runtimes select the extension automatically, but
24
+ it remains dormant until an HTTP exporter URL is configured and an eval run
25
+ selects its exporter id. npm services that need HTTP eval export install
26
+ `@veryfront/ext-eval-report-http`; package discovery then selects it
27
+ automatically. The standard `veryfront` npm package does not install this
28
+ network-export integration for every application.
29
+
30
+ Set `VERYFRONT_EVAL_HTTP_EXPORTER_URL` for the default `http` exporter, then run:
31
+
32
+ ```bash
33
+ veryfront eval deep-research --export http
34
+ ```
35
+
36
+ Register the factory explicitly only when configuration must define multiple
37
+ exporters, inject a fetch implementation, or avoid environment configuration:
24
38
 
25
39
  ```ts
26
40
  import extEvalReportHttp from "@veryfront/ext-eval-report-http";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veryfront/ext-eval-report-http",
3
- "version": "0.1.1186",
3
+ "version": "0.1.1190",
4
4
  "description": "Veryfront first-party extension package for ext-eval-report-http",
5
5
  "keywords": [
6
6
  "veryfront",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "scripts": {},
29
29
  "engines": {
30
- "node": ">=18.0.0"
30
+ "node": ">=22.3.0"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
@@ -63,7 +63,7 @@
63
63
  "@deno/shim-timers": "~0.1.0"
64
64
  },
65
65
  "peerDependencies": {
66
- "veryfront": "^0.1.1186"
66
+ "veryfront": "^0.1.1190"
67
67
  },
68
68
  "type": "module",
69
69
  "types": "./esm/index.d.ts",