@miller-tech/uap 1.20.40 → 1.20.41
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
|
@@ -8250,7 +8250,7 @@ async def models():
|
|
|
8250
8250
|
{"id": "claude-haiku-4-5-20251001", "object": "model"},
|
|
8251
8251
|
{"id": "claude-sonnet-4-6", "object": "model"},
|
|
8252
8252
|
{"id": "claude-opus-4-7", "object": "model"},
|
|
8253
|
-
{"id": "
|
|
8253
|
+
{"id": "qwen36-27b-iq4xs", "object": "model"},
|
|
8254
8254
|
]
|
|
8255
8255
|
}
|
|
8256
8256
|
|
|
@@ -5028,9 +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
|
|
5032
|
-
#
|
|
5033
|
-
|
|
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)
|
|
5037
|
+
self.assertNotIn("qwen35-a3b-iq4xs", ids)
|
|
5034
5038
|
|
|
5035
5039
|
def test_models_endpoint_drops_stale_4_6_dated_variants(self):
|
|
5036
5040
|
"""The pre-2026-05 list advertised claude-opus-4-6-20260101,
|