lex-llm-vertex 0.2.6 → 0.2.7
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/legion/extensions/llm/vertex/provider.rb +1 -1
- data/lib/legion/extensions/llm/vertex/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed2140852009fd8e4261da39a98a2f458b0241dcfa7cfb45d3bbf3aee9cc6fd4
|
|
4
|
+
data.tar.gz: c4a52cd4ead2d9e274b82d698800b92734dccb4716cb575468cf5567ca88f0b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 957512b568de5bcbd20f3c73881e0fc175c0c54428ba2dee4722d3a935d7af578577a38ce940609cdb464d764967b6a655700a7e97eedf2e985d5486dd168953
|
|
7
|
+
data.tar.gz: c573c0bcf6ebfb0e08c584f0ee712b86264fe9621e01a28b2149b6e51c2cc208dbefd3f451393c7998f1c1739f4e41d14e623785abc8cf92acfc8f9097a2e23f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.7 - 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.6 - 2026-05-06
|
|
4
8
|
|
|
5
9
|
- Load provider-owned fleet actors through the LegionIO subscription base and the canonical Vertex provider root.
|
|
@@ -112,7 +112,7 @@ module Legion
|
|
|
112
112
|
"#{publisher_model_path(model)}:#{suffix}"
|
|
113
113
|
end
|
|
114
114
|
|
|
115
|
-
def list_models
|
|
115
|
+
def list_models(**)
|
|
116
116
|
log.info { 'listing available Vertex models from static catalog' }
|
|
117
117
|
STATIC_MODELS.map { |entry| model_info_from_static(entry) }.tap do |models|
|
|
118
118
|
log.info { "discovered #{models.size} Vertex model(s); publishing to registry" }
|