lex-llm 0.3.0 → 0.3.1
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: 21bb44444f871870151b379672c39b043c36233ee0b7d634660a7fe021f355b6
|
|
4
|
+
data.tar.gz: 2bc64a7a18d4304179e7465c99e21fdf584a9e4dd54860b207bf8d8c87e738cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 930d418014199a5f3b34bf505555e54462e2e590c11475859221d9a83c2def586f547c8341f813cfab03d6677ddbc8a66e06edc9f36e6bb6ffea05d36e40ce0b
|
|
7
|
+
data.tar.gz: 66201e1d6405692d6da1fbb38d294b7632a0ef2ca42f1578c548746a5caeb3d3a25d1d37347e33f88d628408d962707d4ab254038cc97d0ad27b89bafa42b0e8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.1 - 2026-05-02
|
|
4
|
+
|
|
5
|
+
- Fix AutoRegistration to pass tier and capabilities metadata to Call::Registry on registration
|
|
6
|
+
|
|
3
7
|
## 0.3.0 - 2026-05-01
|
|
4
8
|
|
|
5
9
|
- Add CredentialSources helper: read-only probes for env vars, ~/.claude/settings.json, ~/.codex/auth.json, Legion::Settings, socket/HTTP probes, SHA-256 credential dedup
|
|
@@ -32,8 +32,9 @@ module Legion
|
|
|
32
32
|
adapter = Legion::LLM::Call::LexLLMAdapter.new(
|
|
33
33
|
self::PROVIDER_FAMILY, provider_class, instance_config: registry_config
|
|
34
34
|
)
|
|
35
|
+
meta = { tier: config[:tier], capabilities: config[:capabilities] || [] }
|
|
35
36
|
Legion::LLM::Call::Registry.register(
|
|
36
|
-
self::PROVIDER_FAMILY, adapter, instance: instance_id
|
|
37
|
+
self::PROVIDER_FAMILY, adapter, instance: instance_id, metadata: meta
|
|
37
38
|
)
|
|
38
39
|
end
|
|
39
40
|
rescue StandardError => e
|