rubric_llm 0.1.1 → 0.1.2

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: 52a6704521634882ccc1d1779c20e2b65587f398b2cfd00b3c7892d9a97706e1
4
- data.tar.gz: 3410606f13f439af21457ac9714b0e67a33752a3231854ccd0f73e759d4ac209
3
+ metadata.gz: 4984077f320263925eed14be810301406ff2a6f369f8d3d50ed7678e8d997c9c
4
+ data.tar.gz: 9457b67015d20bd1e68d2b0f4acfaa836c6842b0a0b567d6393911cdcb012fd4
5
5
  SHA512:
6
- metadata.gz: 17a9e4d4308627889576b29fbbdb91a93a12e702847780e21fe070cb499ac06d243fa5e688d520e4fd43827eb05ba86b85eafb039598160e31e273838ab69f1c
7
- data.tar.gz: 86b21112726b41c2eef29cc2e0fc0f6b6b4d742a6c2797d46f391d0292fb2ad8477d3792029d1b90f562425118f52df496e998f6d434128c4b4017756aaa217d
6
+ metadata.gz: 58e6b00870262214c6a7a1331987e22e7f496490f3b3bd135b4f56b400718d7bfa28727749412b58687b0dc5c16c33d3dfa59fc20383a314fc58b031083232e1
7
+ data.tar.gz: 7c6c68ffb6ec620c8f02f7bde4993c90eaf707c72057f77d240072108aba267e77b9f3b44618c9b6d8a80d70aaed40b21c84f795ec4a8c8228c08d16ac7f49e9
data/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.2] - 2026-04-30
11
+
12
+ ### Added
13
+
14
+ - Add standalone LLM-as-Judge examples for RAG scoring, batch reports, model comparison, custom metrics, and Minitest assertions
15
+
10
16
  ## [0.1.1] - 2026-03-24
11
17
 
12
18
  ### Fixed
data/README.md CHANGED
@@ -27,7 +27,7 @@ gem install rubric_llm
27
27
  require "rubric_llm"
28
28
 
29
29
  RubricLLM.configure do |c|
30
- c.judge_model = "gpt-4o"
30
+ c.judge_model = "gpt-5.5"
31
31
  c.judge_provider = :openai
32
32
  end
33
33
 
@@ -45,6 +45,9 @@ result.overall # => 0.94
45
45
  result.pass? # => true
46
46
  ```
47
47
 
48
+ For runnable LLM-as-Judge examples, including RAG scoring, batch pass/fail output, model comparison, custom metrics, and live
49
+ Minitest assertions, see [examples/README.md](examples/README.md).
50
+
48
51
  ## Configuration
49
52
 
50
53
  ### Global
@@ -350,3 +353,5 @@ Bug reports and pull requests are welcome on [GitHub](https://github.com/dpaluy/
350
353
  ## License
351
354
 
352
355
  [MIT](LICENSE.txt)
356
+
357
+ Supported by [Majestic Labs](https://majesticlabs.dev/).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubricLLM
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubric_llm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Paluy