ruby_llm-evaluations 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 73ae9e841fb7dc098a036184de5f2b82eb304a398ffc30bd168e2fbfc5f9161f
4
+ data.tar.gz: 1e21cadc017c3eacb0d6ad8cb97247a23a043770ce19542122b6007635262810
5
+ SHA512:
6
+ metadata.gz: 41f3a6bbca3b185cbd71708345884576f151a7bdf160e1306d1c9cf02f3e3b91bf387d39cc926fcffca3a5879d61957c141ef99e719ed05a73517ea2fbcd9ce2
7
+ data.tar.gz: 4c30047e57345d58b85fa58393f1d3696dc5d5d4d623f4c9cb0b904b99a74e961e986f04e453d2b48258af9cf01f92d807328c6b5704d2030c8d45cb5621afb1
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Carmine Paolino
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # RubyLLM Evaluations
2
+
3
+ Evals for RubyLLM applications.
4
+
5
+ ## Status
6
+
7
+ This is a placeholder release. The full implementation is coming soon!
8
+
9
+ ## About
10
+
11
+ RubyLLM Evaluations will be the official evals companion to the [RubyLLM](https://github.com/crmne/ruby_llm) gem: deterministic assertions and model-graded scoring over chats, agents, and tools, at home in RSpec and Minitest.
12
+
13
+ ## Installation
14
+
15
+ ```bash
16
+ gem install ruby_llm-evaluations
17
+ ```
18
+
19
+ ## Stay Tuned
20
+
21
+ Watch this repository for updates.
22
+
23
+ ## License
24
+
25
+ MIT License - see LICENSE file for details.
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RubyLLM
4
+ module Evaluations
5
+ VERSION = '0.1.0'
6
+ end
7
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'evaluations/version'
4
+
5
+ module RubyLLM
6
+ # Placeholder release reserving the ruby_llm-evaluations gem name.
7
+ module Evaluations
8
+ class Error < StandardError; end
9
+
10
+ def self.info
11
+ "RubyLLM Evaluations #{VERSION} - coming soon"
12
+ end
13
+ end
14
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby_llm-evaluations
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Carmine Paolino
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: 'RubyLLM Evaluations will bring evals to Ruby: score transcripts with
13
+ deterministic checks and model-graded rubrics, right in your test suite. This is
14
+ a placeholder release - full implementation coming soon!'
15
+ email:
16
+ - carmine@paolino.me
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - LICENSE
22
+ - README.md
23
+ - lib/ruby_llm/evaluations.rb
24
+ - lib/ruby_llm/evaluations/version.rb
25
+ homepage: https://github.com/crmne/ruby_llm-evaluations
26
+ licenses:
27
+ - MIT
28
+ metadata:
29
+ homepage_uri: https://github.com/crmne/ruby_llm-evaluations
30
+ source_code_uri: https://github.com/crmne/ruby_llm-evaluations
31
+ rubygems_mfa_required: 'true'
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 3.1.3
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 4.0.16
47
+ specification_version: 4
48
+ summary: Evals for RubyLLM applications.
49
+ test_files: []