boxcars 0.8.0 → 0.8.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: 27e2420c9339daf37e4eb0c63f86fede297cf48931398a33b2a73054900b5288
4
- data.tar.gz: f6fd74d8381fa7905715706d51fafdd179f47c4b021cb57caeacbadb9fdb40a1
3
+ metadata.gz: e76c5930ad4510169e7b27bca16789e5e8b72f1627f8e05546fe6450a649416a
4
+ data.tar.gz: 7a3a1f3e8eb58674481f57e814b68d797135f5ea41856629bbbae9f17743e429
5
5
  SHA512:
6
- metadata.gz: 3844edd3c676e68aead5f2a461b401a11a7094d944b66f5b560d03f55a5ca49c936d0ddd8e4f58ac44a32300895c2d34fd5c52adc45fdfc489653b3cf5de2c78
7
- data.tar.gz: f8844a5a5977a7769a495bc16b3bc1d6204501a42106fe2528ec6d60be559c08419eae242a1d3ed8b73c1dc9ff44e94c7f2e4e7dd06413483f4db3a66e299711
6
+ metadata.gz: 0b660877e4644a88e4a024512be55b2eeb5ea5cae8fb72a66f117a7ebfca2eefce6f2cfc10587afd9083b03b40e38c0fb30ca56ffbd4ce6723c09f2bf886acdf
7
+ data.tar.gz: f17d7b1cc975749780feecf2dfca65056332e98bb6b2a3ef40cbe0663820ed66ee51f88776910590b8c27a8ec4fcfe586c188ee7126c99127e4dd410d4e7f8fb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.8.0](https://github.com/BoxcarsAI/boxcars/tree/v0.8.0) (2025-06-03)
4
+
5
+ [Full Changelog](https://github.com/BoxcarsAI/boxcars/compare/v0.7.7...v0.8.0)
6
+
7
+ **Closed issues:**
8
+
9
+ - ActiveRecord translations [\#249](https://github.com/BoxcarsAI/boxcars/issues/249)
10
+ - Any chance of getting AWS Bedrock as a provider? [\#239](https://github.com/BoxcarsAI/boxcars/issues/239)
11
+
12
+ **Merged pull requests:**
13
+
14
+ - Add observability hooks [\#251](https://github.com/BoxcarsAI/boxcars/pull/251) ([francis](https://github.com/francis))
15
+
16
+ ## [v0.7.7](https://github.com/BoxcarsAI/boxcars/tree/v0.7.7) (2025-04-23)
17
+
18
+ [Full Changelog](https://github.com/BoxcarsAI/boxcars/compare/v0.7.6...v0.7.7)
19
+
3
20
  ## [v0.7.6](https://github.com/BoxcarsAI/boxcars/tree/v0.7.6) (2025-04-22)
4
21
 
5
22
  [Full Changelog](https://github.com/BoxcarsAI/boxcars/compare/v0.7.5...v0.7.6)
data/Gemfile.lock CHANGED
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- boxcars (0.8.0)
4
+ boxcars (0.8.1)
5
+ faraday-retry (~> 2.0)
5
6
  google_search_results (~> 2.2)
6
7
  gpt4all (~> 0.0.5)
7
8
  hnswlib (~> 0.9)
data/boxcars.gemspec CHANGED
@@ -31,6 +31,7 @@ Gem::Specification.new do |spec|
31
31
  spec.require_paths = ["lib"]
32
32
 
33
33
  # runtime dependencies
34
+ spec.add_dependency "faraday-retry", "~> 2.0"
34
35
  spec.add_dependency "google_search_results", "~> 2.2"
35
36
  spec.add_dependency "gpt4all", "~> 0.0.5"
36
37
  spec.add_dependency "hnswlib", "~> 0.9"
@@ -115,8 +115,7 @@ else
115
115
  module VectorStore
116
116
  module Pgvector
117
117
  class PgvectorNotAvailableError < StandardError
118
- DEFAULT_MESSAGE = "The 'pgvector' and 'pg' gems are required. Please add them to your Gemfile."
119
- def initialize(message = DEFAULT_MESSAGE)
118
+ def initialize(message = "The 'pgvector' and 'pg' gems are required. Please add them to your Gemfile.")
120
119
  super
121
120
  end
122
121
  end
@@ -103,8 +103,7 @@ else
103
103
  module VectorStore
104
104
  module Pgvector
105
105
  class PgvectorNotAvailableError < StandardError
106
- DEFAULT_MESSAGE = "The 'pgvector' and 'pg' gems are required. Please add them to your Gemfile."
107
- def initialize(message = DEFAULT_MESSAGE)
106
+ def initialize(message = "The 'pgvector' and 'pg' gems are required. Please add them to your Gemfile.")
108
107
  super
109
108
  end
110
109
  end
@@ -155,8 +155,7 @@ else
155
155
  module VectorStore
156
156
  module Pgvector
157
157
  class PgvectorNotAvailableError < StandardError
158
- DEFAULT_MESSAGE = "The 'pgvector' and 'pg' gems are required. Please add them to your Gemfile."
159
- def initialize(message = DEFAULT_MESSAGE)
158
+ def initialize(message = "The 'pgvector' and 'pg' gems are required. Please add them to your Gemfile.")
160
159
  super
161
160
  end
162
161
  end
@@ -167,8 +167,7 @@ else
167
167
  module VectorStore
168
168
  module Pgvector
169
169
  class PgvectorNotAvailableError < StandardError
170
- DEFAULT_MESSAGE = "The 'pgvector' and 'pg' gems are required. Please add them to your Gemfile."
171
- def initialize(message = DEFAULT_MESSAGE)
170
+ def initialize(message = "The 'pgvector' and 'pg' gems are required. Please add them to your Gemfile.")
172
171
  super
173
172
  end
174
173
  end
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Boxcars
4
4
  # The current version of the gem.
5
- VERSION = "0.8.0"
5
+ VERSION = "0.8.1"
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.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francis Sullivan
@@ -10,6 +10,20 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 1980-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: faraday-retry
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: google_search_results
15
29
  requirement: !ruby/object:Gem::Requirement