ruby_llm-responses_api 0.3.0 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09bb1acfd81c2fac2bfecfbaae9780ca64a3d6e13f1692237df82372f42f9263'
4
- data.tar.gz: bcfcbd5d83280b319748b58ae2533f8963d0a4eeb8c829bd645cfe5c08245ff0
3
+ metadata.gz: ea0573fba4558602d3dfae81efc02d6164a7fe30d05ac277302de4fe2ef91ba7
4
+ data.tar.gz: d1f6077b07879b754c2ea7c2bb9577473beec9059d0389a541891c389f37af79
5
5
  SHA512:
6
- metadata.gz: 1f1f210817358d55bb76ad1169e7ffcbb510b54d57111aee18c2aa748a5ad0a1c8b3bb10b0b7e54a4d767234bd388c6936b2ab15c0c1ae8fa7ae8370e91e57b6
7
- data.tar.gz: 047b530a9923948c8c25813192566c27a94dad2954ff3fbf26dfa14944a52f6a5df4a6d8839ad94ca9447194f3a1eea7b8ca46fec07e036bf3b9776465d10596
6
+ metadata.gz: e407cfce50dd85f7ab4c2e35ca6dc0406efd26fd069238b9e6def78a725e9d3a4d62736328da0e3e8d3b8dbbb671f78bf13f632d645a5c9029521d45a54251b8
7
+ data.tar.gz: e96c18c0c53c7a6f5482246b990d78a4d3f9e868cf1818c990e2a4d447a4ec6b9f26a5b8925024c1f331a18d45a9b640ca7393e7d01156b38bbed5946acbd260
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.3.1] - 2026-02-18
9
+
10
+ ### Fixed
11
+
12
+ - Compatibility with RubyLLM v1.12.0 (`thinking:` parameter in `render_payload`)
13
+
8
14
  ## [0.3.0] - 2026-02-11
9
15
 
10
16
  ### Added
@@ -12,7 +12,7 @@ module RubyLLM
12
12
 
13
13
  module_function
14
14
 
15
- def render_payload(messages, tools:, temperature:, model:, stream: false, schema: nil) # rubocop:disable Metrics/ParameterLists
15
+ def render_payload(messages, tools:, temperature:, model:, stream: false, schema: nil, thinking: nil) # rubocop:disable Metrics/ParameterLists
16
16
  # Extract system messages for instructions
17
17
  system_messages = messages.select { |m| m.role == :system }
18
18
  non_system_messages = messages.reject { |m| m.role == :system }
@@ -36,7 +36,7 @@ RubyLLM::Providers::OpenAIResponses::ModelRegistry.register_all!
36
36
  module RubyLLM
37
37
  # ResponsesAPI namespace for direct access to helpers and version
38
38
  module ResponsesAPI
39
- VERSION = '0.3.0'
39
+ VERSION = '0.3.1'
40
40
 
41
41
  # Shorthand access to built-in tool helpers
42
42
  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.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Hasinski