ruby_llm-responses_api 0.5.2 → 0.5.3

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: 0c13536c81c541310d1017204b4d312fa6cca67043cf9600f3e7ef497819a87c
4
- data.tar.gz: 17b16d29633466bf1d9907ad871afae85029641f4768c849bcc75157e85475f6
3
+ metadata.gz: c37114318d4bd99bade3a5c7079a0d39ad7c24b581d2e81e43634db2a4908f08
4
+ data.tar.gz: 26a2b16bc07b64047f7feceb9db5074be7059b0b3fd23e6fd21416f20cedf112
5
5
  SHA512:
6
- metadata.gz: b82fa66f5c8b4a5410a6560c6a3e06530f211e9a0d2738e7170d4f198dc826869cb38a0185fd411ea531a1b2c8029f5a0f983f744e86b8c6d3dc28acf6b6395a
7
- data.tar.gz: 1bb3d6cc3c1ee74f94e66225acbab358d7022e3f1feefa94e123d418b265d12ec11ef8053fcbee619d134f62681f4a5fb0bb1a62bc5de5565ce4f77f9b7b3cb8
6
+ metadata.gz: 9099c4a22c6411369e0efa706fa1adf537f4aee9c55aa4a0204c6d8b3b45ee67ad414e388315303b47513c40c9da01020c260439f10686da1aedeb1bfeb7f77c
7
+ data.tar.gz: ba15916c728707dd92c031aff121b54e919b262e3139f3f857e7370f64aa073a38f1275742441cb8c6da75cbc2c5a849052458b81d2b725e782c23e1fa2607c0
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ 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.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.5.3] - 2026-03-27
9
+
10
+ ### Fixed
11
+
12
+ - Return string from `slug` instead of symbol to fix `Model.refresh!` sorting crash (PR #6 by @noelblaschke)
13
+
8
14
  ## [0.5.2] - 2026-03-18
9
15
 
10
16
  ### Fixed
@@ -214,7 +214,7 @@ module RubyLLM
214
214
  end
215
215
 
216
216
  def slug
217
- :openai_responses
217
+ 'openai_responses'
218
218
  end
219
219
  end
220
220
  end
@@ -39,7 +39,7 @@ RubyLLM::Providers::OpenAIResponses::ModelRegistry.register_all!
39
39
  module RubyLLM
40
40
  # ResponsesAPI namespace for direct access to helpers and version
41
41
  module ResponsesAPI
42
- VERSION = '0.5.2'
42
+ VERSION = '0.5.3'
43
43
 
44
44
  # Shorthand access to built-in tool helpers
45
45
  BuiltInTools = Providers::OpenAIResponses::BuiltInTools
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_llm-responses_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Hasinski
@@ -191,7 +191,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
191
191
  - !ruby/object:Gem::Version
192
192
  version: '0'
193
193
  requirements: []
194
- rubygems_version: 4.0.2
194
+ rubygems_version: 3.6.9
195
195
  specification_version: 4
196
196
  summary: OpenAI Responses API provider for RubyLLM
197
197
  test_files: []