@miller-tech/uap 1.20.43 → 1.20.44

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miller-tech/uap",
3
- "version": "1.20.43",
3
+ "version": "1.20.44",
4
4
  "description": "Autonomous AI agent memory system with CLAUDE.md protocol enforcement",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8440,7 +8440,7 @@ async def models():
8440
8440
  {"id": "claude-haiku-4-5-20251001", "object": "model"},
8441
8441
  {"id": "claude-sonnet-4-6", "object": "model"},
8442
8442
  {"id": "claude-opus-4-7", "object": "model"},
8443
- {"id": "qwen36-27b-iq4xs", "object": "model"},
8443
+ {"id": "qwen36-35b-a3b-iq4xs", "object": "model"},
8444
8444
  ]
8445
8445
  }
8446
8446
 
@@ -5028,12 +5028,13 @@ class TestModelsEndpoint(unittest.TestCase):
5028
5028
  self.assertIn("claude-sonnet-4-6", ids)
5029
5029
  self.assertIn("claude-opus-4-7", ids)
5030
5030
 
5031
- # Local model — what llama-server actually serves. Updated
5032
- # 2026-05-15 from qwen35-a3b-iq4xs after the switch from 35B-A3B
5033
- # MoE to Qwen3.6-27B dense (see project_active_server memory).
5034
- # Requests for this ID route locally even with __local_only__
5035
- # passthrough sentinel set.
5036
- self.assertIn("qwen36-27b-iq4xs", ids)
5031
+ # Local model — what llama-server actually serves. Tracks the
5032
+ # active model: qwen36-35b-a3b-iq4xs as of the 2026-05-17 switch
5033
+ # back to Qwen3.6-35B-A3B MoE from the 27B dense (see
5034
+ # project_active_server memory). Requests for this ID route
5035
+ # locally even with the __local_only__ passthrough sentinel set.
5036
+ self.assertIn("qwen36-35b-a3b-iq4xs", ids)
5037
+ self.assertNotIn("qwen36-27b-iq4xs", ids)
5037
5038
  self.assertNotIn("qwen35-a3b-iq4xs", ids)
5038
5039
 
5039
5040
  def test_models_endpoint_drops_stale_4_6_dated_variants(self):