lex-llm-bedrock 0.3.5 → 0.3.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: ba5cbf8b2adeb7ce05f969bfef32582c03d238febed07790345841d1cf038eba
|
|
4
|
+
data.tar.gz: 96fd62bc8575afa30a836c084e3d4f8745dfd59566f7210ec6226f4a466444f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4cf60483077635545837818151d76674d3a8f69550dce991f3c8def75f1c9fabe882b30efedbeffe57c051040b53e7b473a92d34199c9edf7da2f6441fecddcc
|
|
7
|
+
data.tar.gz: 9098f7257c42b29f48ea2cb6d212ef737b8473f7d53e3f9bddedbde7e4be7c2887ce1d82e998905fbf86621975537fe49bd3181792d8a23925dbada75fa5fc33
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.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.3.5 - 2026-05-06
|
|
4
8
|
|
|
5
9
|
- Load provider-owned fleet actors through the LegionIO subscription base and the canonical Bedrock provider root.
|
|
@@ -140,7 +140,7 @@ module Legion
|
|
|
140
140
|
end
|
|
141
141
|
end
|
|
142
142
|
|
|
143
|
-
def list_models
|
|
143
|
+
def list_models(**)
|
|
144
144
|
log.info { 'bedrock.provider.list_models: fetching live model list' }
|
|
145
145
|
response = bedrock_client.list_foundation_models
|
|
146
146
|
models = Array(value(response, :model_summaries)).filter_map { |summary| model_info_from_summary(summary) }
|