uneven-ai 1.2.1 → 1.2.2

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/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to Uneven AI will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.2.2] - 2026-05-02
9
+
10
+ ### Fixed
11
+
12
+ - **Local model path** — After `uneven-ai init`, commands such as `index` and `ask` failed with `Cannot open ./models/…: No such file or directory`. The Rust engine was resolving model files relative to `./models/` while the installer writes them to `.uneven/models/`. Both the inference loader (GGUF + tokenizer) and the embeddings module now read from `.uneven/models/` consistently.
13
+
14
+ ---
15
+
8
16
  ## [1.2.1] - 2026-05-01
9
17
 
10
18
  ### Fixed
package/LICENSE CHANGED
@@ -24,7 +24,7 @@ contato@rileysolucoes.com.br
24
24
 
25
25
  ---
26
26
 
27
- Uneven AI's "Maria" agent is powered by Llama 3.2. Llama 3.2 is licensed under the Llama 3.2 Community License, Copyright © Meta Platforms, Inc. All Rights Reserved.
27
+ Uneven AI's "Snatchy" agent is powered by Llama 3.2. Llama 3.2 is licensed under the Llama 3.2 Community License, Copyright © Meta Platforms, Inc. All Rights Reserved.
28
28
 
29
29
  ---
30
30
 
@@ -1,5 +1,5 @@
1
1
  export declare const SESSION_FILE = ".uneven/session.json";
2
- export declare const UNEVEN_VERSION = "1.2.1";
2
+ export declare const UNEVEN_VERSION = "1.2.2";
3
3
  export declare const STALE_THRESHOLD_MS: number;
4
4
  export declare const LOCK_TIMEOUT_MS = 30000;
5
5
  export declare const LOCK_DEBOUNCE_MS = 1500;
@@ -1,5 +1,5 @@
1
1
  export const SESSION_FILE = '.uneven/session.json';
2
- export const UNEVEN_VERSION = '1.2.1';
2
+ export const UNEVEN_VERSION = '1.2.2';
3
3
  export const STALE_THRESHOLD_MS = 60 * 60 * 1000; // 1 hour
4
4
  export const LOCK_TIMEOUT_MS = 30_000; // 30 seconds
5
5
  export const LOCK_DEBOUNCE_MS = 1_500; // 1.5 seconds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uneven-ai",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"