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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +13 -0
  3. data/lib/ruby_pi/version.rb +1 -1
  4. metadata +11 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 766afd01deb469fa6f86f35844e7dd4e100c2de2deb2ce593e07fa75b3ae4637
4
- data.tar.gz: 8a72e80d2448359004909ed3afcf5b01fbd41429c2538dc5c8e6b84b6d18326b
3
+ metadata.gz: 0d5744eb38aa0fbf2ff5230ae86a66c85c3ed6c2bdc50fc9bcdd1f0514752fe9
4
+ data.tar.gz: 8deaa07b7bfe6157de4859ddfb71c68508ef4bc7c3b6ad753bf1a64d44ef597e
5
5
  SHA512:
6
- metadata.gz: 0cadf39edb5c0a83e3f1bf27f503bc9d682b9a4f264eb8a0fbb026609ce66508839acef3151ce53541aee62f1068819a1f8953bddca1c076eb7011c148799cb2
7
- data.tar.gz: 861befb924a6dbf153f755fff18cf7c579bb175e5ebc227623591e1dfea637e444e041a795d5f750d77de2bec621147e903ae76dae12dd76b87e4936507e94fe
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
@@ -7,5 +7,5 @@
7
7
 
8
8
  module RubyPi
9
9
  # The current version of the RubyPi gem, following Semantic Versioning.
10
- VERSION = "0.1.0"
10
+ VERSION = "0.1.1"
11
11
  end
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.0
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 provides idiomatic Ruby patterns for building AI agents. It offers
131
- a unified interface to multiple LLM providers (Gemini, Anthropic, OpenAI) with streaming
132
- support, tool calling, automatic retries, and fallback strategies.
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: A Ruby agent harness inspired by Pi minimal, composable, production-ready.
196
+ summary: AI agent harness for Rubybuild LLM agents with tool calling, streaming,
197
+ and a unified interface to OpenAI, Anthropic Claude, and Google Gemini.
192
198
  test_files: []