@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
|
@@ -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-
|
|
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.
|
|
5032
|
-
#
|
|
5033
|
-
#
|
|
5034
|
-
# Requests for this ID route
|
|
5035
|
-
# passthrough sentinel set.
|
|
5036
|
-
self.assertIn("qwen36-
|
|
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):
|