lex-llm-anthropic 0.2.8 → 0.2.9
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: d7687ad53b9f3aa50db888d664f8ac8e1dbdd92bac3701097b1aa40312a30ff9
|
|
4
|
+
data.tar.gz: 1eaf4a5fdd3f40a27da9fb72983fafab2dd974f81e40ed1d0e73a0d82d4fec47
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f44ddddc7211f40bd5e155d802c1b59983ebbd0fe4ed2db3f1e6e9e637dce9c4d9428a2fdf59a3190f59cba71ac9443448d2c488ceac213bda8d453d06bf1e2
|
|
7
|
+
data.tar.gz: 979bcf878d565712f1d24a32aaeedb24f7311c05b36a82861c547dc1f37931b97f2bd997a17f5507ba91d77b27ba7f3a9cc658d6ecc81c98f6e6573b324da527
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.9 - 2026-05-16
|
|
4
|
+
|
|
5
|
+
- Advertise Anthropic tool support in discovered instance and model metadata so capability-aware routing can select Claude models for native tool requests.
|
|
6
|
+
|
|
3
7
|
## 0.2.8 - 2026-05-13
|
|
4
8
|
|
|
5
9
|
- Remove `:claude` provider alias (`provider_aliases` now returns `[]`).
|
|
@@ -117,7 +117,7 @@ module Legion
|
|
|
117
117
|
|
|
118
118
|
CredentialSources.dedup_credentials(candidates).transform_values do |config|
|
|
119
119
|
sanitized = sanitize_instance_config(config)
|
|
120
|
-
sanitized[:capabilities] ||= %i[completion streaming vision].freeze
|
|
120
|
+
sanitized[:capabilities] ||= %i[completion streaming vision tools].freeze
|
|
121
121
|
sanitized[:default_model] ||= 'claude-sonnet-4-6'
|
|
122
122
|
sanitized
|
|
123
123
|
end
|