lex-llm-anthropic 0.2.5 → 0.2.6
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5ffb30606527237b262367541e2855945a51f3b678dae09cde5e874ad4b68dd
|
|
4
|
+
data.tar.gz: d96e03b52d36827fca0a297e208994da831336f50e64aa234ad07602675835b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 720aa58289499d4289a695e7b83e6f15a6ba6f2508d5fff9d49e203c5cd0c8c14ead5a8b3bcdd22d1f5e08346b6f9ac4c5fb1f54026de32063bcf9c966e2053f
|
|
7
|
+
data.tar.gz: f2647cccc377307c382fec5f20acd6a778bf62c0914e59232a79ec6273c4398c73e89a4191a014c8e23e0159d4bc81ca4435096a21e5691c92164ba99dd713cf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.6 - 2026-05-08
|
|
4
|
+
|
|
5
|
+
- Accept keyword arguments in `list_models` to match the base provider contract called by `discover_offerings`.
|
|
6
|
+
|
|
3
7
|
## 0.2.5 - 2026-05-06
|
|
4
8
|
|
|
5
9
|
- Load provider-owned fleet actors through the LegionIO subscription base and the canonical Anthropic provider root.
|
|
@@ -51,7 +51,7 @@ module Legion
|
|
|
51
51
|
raise NotImplementedError, 'Anthropic does not expose embeddings through this provider'
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
def list_models
|
|
54
|
+
def list_models(**)
|
|
55
55
|
super.tap do |models|
|
|
56
56
|
self.class.registry_publisher.publish_models_async(models, readiness: readiness(live: false))
|
|
57
57
|
end
|