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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d3046a9f7990b66895e6ee190eee74fff899b2c989e2719ab024cb0e8d3f5986
4
- data.tar.gz: 377a8fd162deb086f6cbc1d60c2b6a3799b502b5f330cc1f5219f44cff7018ed
3
+ metadata.gz: f1da18b516af91fc9eaafb80c0d01670dd427ebde7f57a300e57ed715828fd35
4
+ data.tar.gz: fead4c0ac0ee09b32b09bf5439b04d1d85abd80edb2f3ddb66ebc1389bca9c2c
5
5
  SHA512:
6
- metadata.gz: 69888f933e3a33071b6d647ca735b5af9b1dd3cc5e2233960c44cb52855569fd33df38a24d389f8eb52c14c3cfc593fa750cad264b8620b898f73d4b6289612d
7
- data.tar.gz: cbd50993c32cfb0d1ce7e3a8e96d6f374585f1bdceb84b283cd81436d9dc43e7297be4865d813c6bbec726f9d34cb6291572c3b5551547bbe193cf661826bcc3
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
  [![CI](https://github.com/SorcerousMachine/LLMCapabilities/actions/workflows/ci.yml/badge.svg)](https://github.com/SorcerousMachine/LLMCapabilities/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://img.shields.io/gem/v/llm_capabilities)](https://rubygems.org/gems/llm_capabilities)
5
+ [![Sorbet](https://img.shields.io/badge/sorbet-typed-blue.svg)](https://sorbet.org)
6
+ [![Coverage](https://codecov.io/gh/SorcerousMachine/LLMCapabilities/branch/main/graph/badge.svg)](https://codecov.io/gh/SorcerousMachine/LLMCapabilities)
5
7
  [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.txt)
6
8
 
7
9
  4-tier capability detection for LLM models. Zero runtime dependencies.
@@ -2,5 +2,5 @@
2
2
  # typed: true
3
3
 
4
4
  module LLMCapabilities
5
- VERSION = "0.2.0"
5
+ VERSION = "0.2.1"
6
6
  end
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.0
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.4
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: []