@desert-ant-labs/emo 0.4.0 → 0.5.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/hub.d.ts CHANGED
@@ -3,7 +3,7 @@ export declare const DEFAULT_HOST = "https://huggingface.co";
3
3
  export declare const DEFAULT_REPO = "desert-ant-labs/emo";
4
4
  /** Pinned revision of the model repo. A tag (not a bare commit SHA) so it
5
5
  * survives history rewrites/squashes on the model repo. */
6
- export declare const DEFAULT_REVISION = "v0.4.0";
6
+ export declare const DEFAULT_REVISION = "v0.5.0";
7
7
  /** Resolution + caching configuration (mutate the exported `env` to change defaults). */
8
8
  export interface EmoEnv {
9
9
  /** Hugging Face host serving the model repo. */
package/dist/hub.js CHANGED
@@ -3,7 +3,7 @@ export const DEFAULT_HOST = "https://huggingface.co";
3
3
  export const DEFAULT_REPO = "desert-ant-labs/emo";
4
4
  /** Pinned revision of the model repo. A tag (not a bare commit SHA) so it
5
5
  * survives history rewrites/squashes on the model repo. */
6
- export const DEFAULT_REVISION = "v0.4.0";
6
+ export const DEFAULT_REVISION = "v0.5.0";
7
7
  const FILES = ["emo.safetensors", "emo_tokenizer.bin", "emo_meta.json"];
8
8
  function resolveUrl(env, name) {
9
9
  return `${env.host}/${env.repo}/resolve/${env.revision}/${name}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@desert-ant-labs/emo",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "On-device emoji suggestions from text.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.node.js",