ruby-pi 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/CHANGELOG.md +13 -0
- data/lib/ruby_pi/version.rb +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d5744eb38aa0fbf2ff5230ae86a66c85c3ed6c2bdc50fc9bcdd1f0514752fe9
|
|
4
|
+
data.tar.gz: 8deaa07b7bfe6157de4859ddfb71c68508ef4bc7c3b6ad753bf1a64d44ef597e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0c325552e6f82dddcd85c735ce9faa6aa21a8c4424af6b411bae90779a28e32aaecf05c119094d9befd5715e64f16654e435b037561c9446413c2e01c89d898
|
|
7
|
+
data.tar.gz: cf11a6b47b18beb2c8b35caedb036e44a5a3ccf3c62e96cc5e37209bab237e4c16cb9f05784bfc4d0ce804433964c802fa0699362772adbf1926520717233a78
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.1] - 2026-04-28
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Rewrote gem `summary` and `description` for RubyGems search discoverability around terms like "AI agent harness", "LLM agent", "tool calling", and the supported providers
|
|
13
|
+
- Declared `rubygems_mfa_required` in gemspec metadata
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Provider `format_tool` methods now accept `RubyPi::Tools::Definition` objects (not just hashes), unblocking the agent loop for any tool-using flow
|
|
18
|
+
- `ostruct` declared as a runtime dependency so the gem loads on Ruby 4.x where it is no longer a default gem
|
|
19
|
+
- Integration spec rewritten against the current `Agent` API; full suite green (309 examples)
|
|
20
|
+
|
|
8
21
|
## [0.1.0] - 2026-04-28
|
|
9
22
|
|
|
10
23
|
### Added
|
data/lib/ruby_pi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-pi
|
|
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
|
- RubyPi Contributors
|
|
@@ -127,9 +127,13 @@ dependencies:
|
|
|
127
127
|
- - "~>"
|
|
128
128
|
- !ruby/object:Gem::Version
|
|
129
129
|
version: '13.0'
|
|
130
|
-
description: RubyPi
|
|
131
|
-
|
|
132
|
-
|
|
130
|
+
description: RubyPi is a minimal, composable AI agent harness for Ruby. Build production-ready
|
|
131
|
+
LLM agents and AI agents with a unified provider interface across OpenAI, Anthropic
|
|
132
|
+
Claude, and Google Gemini, plus first-class support for tool calling (function calling),
|
|
133
|
+
streaming responses, automatic retries, provider fallback, context compaction, and
|
|
134
|
+
a think-act-observe agent loop. Anti-framework design — small, idiomatic, and explicit.
|
|
135
|
+
Ideal for building autonomous AI agents, ReAct agents, tool-using LLM agents, and
|
|
136
|
+
chatbots in Ruby.
|
|
133
137
|
email:
|
|
134
138
|
- ruby-pi@example.com
|
|
135
139
|
executables: []
|
|
@@ -169,6 +173,7 @@ homepage: https://github.com/ejwhite7/ruby-pi
|
|
|
169
173
|
licenses:
|
|
170
174
|
- MIT
|
|
171
175
|
metadata:
|
|
176
|
+
rubygems_mfa_required: 'true'
|
|
172
177
|
homepage_uri: https://github.com/ejwhite7/ruby-pi
|
|
173
178
|
source_code_uri: https://github.com/ejwhite7/ruby-pi
|
|
174
179
|
changelog_uri: https://github.com/ejwhite7/ruby-pi/blob/main/CHANGELOG.md
|
|
@@ -188,5 +193,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
188
193
|
requirements: []
|
|
189
194
|
rubygems_version: 4.0.3
|
|
190
195
|
specification_version: 4
|
|
191
|
-
summary:
|
|
196
|
+
summary: AI agent harness for Ruby — build LLM agents with tool calling, streaming,
|
|
197
|
+
and a unified interface to OpenAI, Anthropic Claude, and Google Gemini.
|
|
192
198
|
test_files: []
|