evals 1.0.3 → 1.0.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/index.js CHANGED
@@ -15239,7 +15239,7 @@ program.command("fetch-evals").description("Fetch the latest evals for the proje
15239
15239
  const response = await fetch(url, {
15240
15240
  method: "GET",
15241
15241
  headers: {
15242
- Authorization: `Bearer ${UMBRAGE_EVALS_API_KEY}`
15242
+ "X-API-KEY": UMBRAGE_EVALS_API_KEY
15243
15243
  }
15244
15244
  });
15245
15245
  if (!response.ok) {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
7
- "version": "1.0.3",
7
+ "version": "1.0.4",
8
8
  "description": "Umbrage Evals CLI",
9
9
  "bin": {
10
10
  "evals": "./src/index.js"
package/src/index.js CHANGED
@@ -24,7 +24,7 @@ program
24
24
  const response = await fetch(url, {
25
25
  method: 'GET',
26
26
  headers: {
27
- Authorization: `Bearer ${UMBRAGE_EVALS_API_KEY}`,
27
+ "X-API-KEY": UMBRAGE_EVALS_API_KEY,
28
28
  },
29
29
  });
30
30