boxcars 0.8.5 → 0.8.6

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: c1970a509d4c6eebaeaa06792993f7aaa1ba8d2d030e878138a8d6f821726fcc
4
- data.tar.gz: 66ae9f13950ab9a0dd2369a1450fd14d4426faa95d8a62da7b4c7deeddbc6b3d
3
+ metadata.gz: 3c999092bd0fd0799ee3c97e74b0551e23fa5318eeb746fb17f52ed8b8e8e395
4
+ data.tar.gz: 9e4c76ab93ad3cf305af160679b05a46d4b72fb04d0ee40298b7e362d387e582
5
5
  SHA512:
6
- metadata.gz: 7e6d1f2f4788bb24de873a2e7270b52f44ce31017ccd39e1db321b91bd595d1f832c6c9aa4b9ca587626c3390928e70025014a360ba8052b9e870c50566ccb29
7
- data.tar.gz: 4073745656e6944e8e686eee4502916038470ff32261990c1444e50d951a819288a24b993dc51659168b9246dab7020f40fd20f210b9421ab5890e6ec4402d66
6
+ metadata.gz: 2d7a5e62a2f0de60d789c97801d3832b2bd5aee4ceb82be59a8c1f66d724e931819412dede12027019c7d98b46b2a90e22c17660ed03ecab7d822ffa8290d260
7
+ data.tar.gz: a2b51cef624374b84506cb176a3ee5b5732db9fbd87ce4b824b803cf641a623c2e1bb9e22bcb65b7a230f261c913823f1fd65081ac6aa4e6c7068f620b82b63f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.8.5](https://github.com/BoxcarsAI/boxcars/tree/v0.8.5) (2025-07-01)
4
+
5
+ [Full Changelog](https://github.com/BoxcarsAI/boxcars/compare/v0.8.4...v0.8.5)
6
+
7
+ ## [v0.8.4](https://github.com/BoxcarsAI/boxcars/tree/v0.8.4) (2025-06-10)
8
+
9
+ [Full Changelog](https://github.com/BoxcarsAI/boxcars/compare/v0.8.3...v0.8.4)
10
+
11
+ **Merged pull requests:**
12
+
13
+ - add user\_id to observability context data [\#252](https://github.com/BoxcarsAI/boxcars/pull/252) ([francis](https://github.com/francis))
14
+
15
+ ## [v0.8.3](https://github.com/BoxcarsAI/boxcars/tree/v0.8.3) (2025-06-09)
16
+
17
+ [Full Changelog](https://github.com/BoxcarsAI/boxcars/compare/v0.8.2...v0.8.3)
18
+
3
19
  ## [v0.8.2](https://github.com/BoxcarsAI/boxcars/tree/v0.8.2) (2025-06-04)
4
20
 
5
21
  [Full Changelog](https://github.com/BoxcarsAI/boxcars/compare/v0.8.1...v0.8.2)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- boxcars (0.8.5)
4
+ boxcars (0.8.6)
5
5
  faraday-retry (~> 2.0)
6
6
  google_search_results (~> 2.2)
7
7
  gpt4all (~> 0.0.5)
@@ -132,7 +132,7 @@ GEM
132
132
  mime-types (3.7.0)
133
133
  logger
134
134
  mime-types-data (~> 3.2025, >= 3.2025.0507)
135
- mime-types-data (3.2025.0624)
135
+ mime-types-data (3.2025.0701)
136
136
  minitest (5.25.5)
137
137
  multi_json (1.15.0)
138
138
  multipart-post (2.4.1)
@@ -60,7 +60,7 @@ module Boxcars
60
60
  # @return [Boxcars::Engine] An instance of the appropriate engine class
61
61
  def self.json_engine(model: nil, **kw_args)
62
62
  options = { temperature: 0.1, response_format: { type: "json_object" } }.merge(kw_args)
63
- options.delete(:response_format) if model.to_s =~ /sonnet|opus/ || model.to_s.start_with?("llama")
63
+ options.delete(:response_format) if model.to_s =~ /sonnet|opus|sonar/ || model.to_s.start_with?("llama")
64
64
  engine(model:, **options)
65
65
  end
66
66
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Boxcars
4
4
  # The current version of the gem.
5
- VERSION = "0.8.5"
5
+ VERSION = "0.8.6"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boxcars
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.5
4
+ version: 0.8.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francis Sullivan