You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Resources/whats-new.json
+21-2Lines changed: 21 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,14 +3,33 @@
3
3
{
4
4
"version": "20260110.1",
5
5
"release_date": "January 10, 2026",
6
-
"introduction": "Critical hotfix release addressing a regression where local MLX models disappeared from the model picker after updating to 20260108.1.",
7
-
"highlights": [],
6
+
"introduction": "This release introduces support for automated development channel updates, implements API token authentication for external integrations, and fixes critical issues with local MLX models and minimal prompt responses.",
7
+
"highlights": [
8
+
{
9
+
"id": "dev-channel-support",
10
+
"icon": "hammer.fill",
11
+
"title": "Development Channel Support",
12
+
"description": "SAM now supports automatic nightly development builds for early access to features and fixes. Enable 'Receive development updates' in Preferences → General to receive automated pre-release builds (marked as -dev.1, -dev.2, etc.) when changes are available. Development builds are created nightly at 2 AM UTC when changes are pushed, with the last 7 builds kept available. Perfect for users who want to help test new features before stable releases."
13
+
},
14
+
{
15
+
"id": "api-token-auth",
16
+
"icon": "key.fill",
17
+
"title": "API Token Authentication for External Access",
18
+
"description": "SAM's REST API now supports token-based authentication for secure external access. Generate API tokens in Preferences → Advanced → Security, then use them in HTTP headers (Authorization: Bearer <token>) to access SAM's chat completions, tool calls, and other endpoints from external scripts, automation tools, or custom integrations. Tokens can be revoked at any time for security."
19
+
}
20
+
],
8
21
"bugfixes": [
9
22
{
10
23
"id": "local-mlx-picker-fix",
11
24
"icon": "cpu.fill",
12
25
"title": "Local MLX Models Now Appear in Picker",
13
26
"description": "Fixed critical regression where local MLX models (like Qwen3-4B) disappeared from model picker after updating to 20260108.1. Issue occurred because model registry was storing paths to tokenizer files instead of the actual model.safetensors file, causing the MLX provider filter to fail. System now correctly registers only primary model files and prioritizes model.safetensors during scans. Existing corrupted registries will auto-heal on next launch."
27
+
},
28
+
{
29
+
"id": "minimal-prompt-response-fix",
30
+
"icon": "bubble.left.and.bubble.right.fill",
31
+
"title": "Local Models No Longer Fail on Minimal Prompts",
32
+
"description": "Fixed issue where local models (MLX/GGUF) would not return responses when given very short or minimal prompts. System now properly handles minimal context scenarios and ensures local models generate appropriate responses even with brief input."
0 commit comments