evals 0.0.2 → 0.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # JavaScript SDK (for Umbrage Evals)
1
+ # Umbrage Evals JavaScript SDK
2
2
 
3
3
  ## Overview
4
4
 
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export { default as Evals } from './evals';
1
+ export { default } from './evals';
2
2
  export { ModelSettings, Prompt, RequestData, } from './types';
package/dist/index.js CHANGED
@@ -22,5 +22,5 @@ class Evals {
22
22
  }
23
23
  var evals_default = Evals;
24
24
  export {
25
- evals_default as Evals
25
+ evals_default as default
26
26
  };
package/package.json CHANGED
@@ -4,8 +4,8 @@
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
7
- "version": "0.0.2",
8
- "description": "SDK for Umbrage Evals",
7
+ "version": "0.0.4",
8
+ "description": "Umbrage Evals SDK",
9
9
  "scripts": {
10
10
  "build": "bun build --target=node ./src/index.ts --outfile=dist/index.js && bun run build:declaration",
11
11
  "build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",