rubyrlm 0.1.0 → 0.1.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/README.md +2 -0
- data/lib/rubyrlm/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b1be5cb9e804227f839916d6ae187d6e9f1d2935009d2aa432431da5d0acd76
|
|
4
|
+
data.tar.gz: 2e1fcdcc34c49cfe3b9c42783c69e01c8375f13122293f40397460e45fa5161e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63e92aec2c54674e9fe4f2bdb3b054d229c7a9c7d24d6b9cec0a4224ff71e0dab0006d93e6e872f77ff58584d33192df6a0de7ef4ee0c9eba92e65dae51ac91d
|
|
7
|
+
data.tar.gz: 5238b8b38936cce9985d03796451c97a042f4ad6be8f262d3a24b23e41d9203c922712717232643f4eb9f8cc76df487145fd5214dc1bffedf4a3ac3f3a9d37f4
|
data/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
RubyRLM is an MVP Ruby implementation of Recursive Language Models (RLMs) that uses Gemini as the model backend and a Ruby REPL for iterative reasoning.
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
5
7
|
## What This MVP Includes
|
|
6
8
|
|
|
7
9
|
- `RubyRLM::Client` API similar to `rlm.completion(...)`.
|
data/lib/rubyrlm/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubyrlm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Taylor Weibley
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-03-12 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: sinatra
|
|
@@ -188,6 +189,7 @@ metadata:
|
|
|
188
189
|
homepage_uri: https://github.com/tweibley/rubyrlm
|
|
189
190
|
source_code_uri: https://github.com/tweibley/rubyrlm
|
|
190
191
|
changelog_uri: https://github.com/tweibley/rubyrlm/CHANGELOG.md
|
|
192
|
+
post_install_message:
|
|
191
193
|
rdoc_options: []
|
|
192
194
|
require_paths:
|
|
193
195
|
- lib
|
|
@@ -202,7 +204,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
202
204
|
- !ruby/object:Gem::Version
|
|
203
205
|
version: '0'
|
|
204
206
|
requirements: []
|
|
205
|
-
rubygems_version: 3.
|
|
207
|
+
rubygems_version: 3.5.22
|
|
208
|
+
signing_key:
|
|
206
209
|
specification_version: 4
|
|
207
210
|
summary: Recursive Language Models for Ruby
|
|
208
211
|
test_files: []
|