llm_capabilities 0.2.0 → 0.2.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 +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +2 -0
- data/lib/llm_capabilities/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1da18b516af91fc9eaafb80c0d01670dd427ebde7f57a300e57ed715828fd35
|
|
4
|
+
data.tar.gz: fead4c0ac0ee09b32b09bf5439b04d1d85abd80edb2f3ddb66ebc1389bca9c2c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 169da460c28e3177c67ef86bbcb33fe89cd26848823807179179baceba76e12e32bf54d9a6bd665e7952c2c44881395c6f685a53eb62b35270d506500dae681d
|
|
7
|
+
data.tar.gz: 65d27f4fc6fcff39e1883194d6c66fda6f74b0216ed5709867bf6f16347ba7892269af2ff8c797c1d984b76edf8a5b6402a3a11c79c159942acfa0502c2d0bf2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
- Add CI workflow, Codecov coverage reporting, and GitHub Actions gem release
|
|
6
|
+
- Add comprehensive README with badges, API reference, and capability tables
|
|
7
|
+
- Add SimpleCov with 95% minimum coverage enforcement (141 tests, 99.56% line coverage)
|
|
8
|
+
- Add Rakefile for gem release task
|
|
9
|
+
|
|
3
10
|
## 0.2.0
|
|
4
11
|
|
|
5
12
|
- Generalize API from `supports_schema?(model, thinking:)` to `supports?(model, capability, context: {})`
|
data/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/SorcerousMachine/LLMCapabilities/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/llm_capabilities)
|
|
5
|
+
[](https://sorbet.org)
|
|
6
|
+
[](https://codecov.io/gh/SorcerousMachine/LLMCapabilities)
|
|
5
7
|
[](LICENSE.txt)
|
|
6
8
|
|
|
7
9
|
4-tier capability detection for LLM models. Zero runtime dependencies.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: llm_capabilities
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex
|
|
@@ -45,7 +45,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: '0'
|
|
47
47
|
requirements: []
|
|
48
|
-
rubygems_version: 4.0.
|
|
48
|
+
rubygems_version: 4.0.3
|
|
49
49
|
specification_version: 4
|
|
50
50
|
summary: 4-tier capability detection for LLM models
|
|
51
51
|
test_files: []
|