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 +4 -4
- data/CHANGELOG.md +17 -0
- data/Gemfile.lock +2 -1
- data/boxcars.gemspec +1 -0
- data/lib/boxcars/vector_store/pgvector/build_from_array.rb +1 -2
- data/lib/boxcars/vector_store/pgvector/build_from_files.rb +1 -2
- data/lib/boxcars/vector_store/pgvector/save_to_database.rb +1 -2
- data/lib/boxcars/vector_store/pgvector/search.rb +1 -2
- data/lib/boxcars/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e76c5930ad4510169e7b27bca16789e5e8b72f1627f8e05546fe6450a649416a
|
4
|
+
data.tar.gz: 7a3a1f3e8eb58674481f57e814b68d797135f5ea41856629bbbae9f17743e429
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
data/lib/boxcars/version.rb
CHANGED
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.
|
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
|