tempest-react-sdk 0.32.0 → 0.33.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/dist/tabular/compact.cjs +2 -0
- package/dist/tabular/compact.cjs.map +1 -0
- package/dist/tabular/compact.js +121 -0
- package/dist/tabular/compact.js.map +1 -0
- package/dist/tabular/exceptions.cjs +1 -1
- package/dist/tabular/exceptions.cjs.map +1 -1
- package/dist/tabular/exceptions.js +7 -3
- package/dist/tabular/exceptions.js.map +1 -1
- package/dist/tabular/manifest.cjs +1 -1
- package/dist/tabular/manifest.cjs.map +1 -1
- package/dist/tabular/manifest.js +29 -18
- package/dist/tabular/manifest.js.map +1 -1
- package/dist/tabular.cjs +1 -1
- package/dist/tabular.d.ts +629 -450
- package/dist/tabular.js +7 -6
- package/package.json +1 -1
package/dist/tabular.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { ORT_WASM_ASSETS as e, configureOrtAssets as t, ortAssetUrls as n } from "./tabular/assets.js";
|
|
2
|
-
import {
|
|
3
|
-
import { DEFAULT_MODEL_CACHE as
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
2
|
+
import { CompactFormatError as r, FeatureShapeError as i, InferenceError as a, ModelFetchError as o, ModelLoadError as s, TabularError as c, UnsupportedGraphError as l } from "./tabular/exceptions.js";
|
|
3
|
+
import { DEFAULT_MODEL_CACHE as u, cacheModelBytes as d, clearModelCache as f, fetchModelBytes as p, isModelCached as m } from "./tabular/cache.js";
|
|
4
|
+
import { CompactPredictor as h, SUPPORTED_COMPACT_SCHEMA as g } from "./tabular/compact.js";
|
|
5
|
+
import { DEFAULT_TABULAR_PROVIDERS as _, TabularPredictor as v } from "./tabular/predictor.js";
|
|
6
|
+
import { MANIFEST_FILENAME as y, SUPPORTED_MANIFEST_SCHEMA as b, fetchEdgeManifest as x, loadEdgePackage as S } from "./tabular/manifest.js";
|
|
7
|
+
import { useTabularPredictor as C } from "./tabular/use-tabular-predictor.js";
|
|
8
|
+
export { r as CompactFormatError, h as CompactPredictor, u as DEFAULT_MODEL_CACHE, _ as DEFAULT_TABULAR_PROVIDERS, i as FeatureShapeError, a as InferenceError, y as MANIFEST_FILENAME, o as ModelFetchError, s as ModelLoadError, e as ORT_WASM_ASSETS, g as SUPPORTED_COMPACT_SCHEMA, b as SUPPORTED_MANIFEST_SCHEMA, c as TabularError, v as TabularPredictor, l as UnsupportedGraphError, d as cacheModelBytes, f as clearModelCache, t as configureOrtAssets, x as fetchEdgeManifest, p as fetchModelBytes, m as isModelCached, S as loadEdgePackage, n as ortAssetUrls, C as useTabularPredictor };
|