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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/ruby_llm/providers/openai_responses/chat.rb +1 -1
- data/lib/rubyllm_responses_api.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea0573fba4558602d3dfae81efc02d6164a7fe30d05ac277302de4fe2ef91ba7
|
|
4
|
+
data.tar.gz: d1f6077b07879b754c2ea7c2bb9577473beec9059d0389a541891c389f37af79
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
39
|
+
VERSION = '0.3.1'
|
|
40
40
|
|
|
41
41
|
# Shorthand access to built-in tool helpers
|
|
42
42
|
BuiltInTools = Providers::OpenAIResponses::BuiltInTools
|