voyageai 1.6.0 → 1.8.0
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/lib/voyageai/client.rb +3 -2
- data/lib/voyageai/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e546fe80fb40f83eb48bd084f1cdb125cb7ee33516a1a09e3f2c29d0e774db6
|
4
|
+
data.tar.gz: 3eb3252b3ec88cef85fa4a0f1235e9def378e739593a6fa8fb977fc4b24f8d00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d22ce96d45dcbb1293e8d0e57bfdefe4857c3fddae9fdd95459ff7d6a815b1ba6e580f5fb4734c6bf7d92bdcbc5796856e3afa77f574150911716a847e0c7e4
|
7
|
+
data.tar.gz: ff9db8160a7870d823021071e47e90a5098536bcd8b2f558799e838021a1bcbcce35d05a0c87abb1d4e3ddda66afa2e2ce10fd8762473aa3ef17313d4477e927
|
data/lib/voyageai/client.rb
CHANGED
@@ -41,10 +41,11 @@ module VoyageAI
|
|
41
41
|
# @param model [String] optional (e.g. VoyageAI::Model::VOYAGE or "voyage-3")
|
42
42
|
# @param input_type [Symbol] optional (e.g. :query or :document)
|
43
43
|
# @param truncation [Boolean] optional
|
44
|
+
# @param output_dimension [Integer] optional
|
44
45
|
#
|
45
46
|
# @return [Embedding]
|
46
|
-
def embed(input, model: Model::VOYAGE, input_type: nil, truncation: nil)
|
47
|
-
payload = { input: arrayify(input), model: model, truncation:, input_type: }.compact
|
47
|
+
def embed(input, model: Model::VOYAGE, input_type: nil, truncation: nil, output_dimension: nil)
|
48
|
+
payload = { input: arrayify(input), model: model, truncation:, input_type:, output_dimension: }.compact
|
48
49
|
response = http.accept(:json).post("/#{@version}/embeddings", json: payload)
|
49
50
|
|
50
51
|
raise RequestError.new(response:) unless response.status.ok?
|
data/lib/voyageai/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: voyageai
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin Sylvestre
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-02-27 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: http
|
@@ -64,8 +64,8 @@ licenses:
|
|
64
64
|
metadata:
|
65
65
|
rubygems_mfa_required: 'true'
|
66
66
|
homepage_uri: https://github.com/ksylvest/voyageai
|
67
|
-
source_code_uri: https://github.com/ksylvest/voyageai/tree/v1.
|
68
|
-
changelog_uri: https://github.com/ksylvest/voyageai/releases/tag/v1.
|
67
|
+
source_code_uri: https://github.com/ksylvest/voyageai/tree/v1.8.0
|
68
|
+
changelog_uri: https://github.com/ksylvest/voyageai/releases/tag/v1.8.0
|
69
69
|
documentation_uri: https://voyageai.ksylvest.com/
|
70
70
|
rdoc_options: []
|
71
71
|
require_paths:
|
@@ -74,14 +74,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
74
74
|
requirements:
|
75
75
|
- - ">="
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version: 3.
|
77
|
+
version: 3.2.0
|
78
78
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
requirements: []
|
84
|
-
rubygems_version: 3.6.
|
84
|
+
rubygems_version: 3.6.3
|
85
85
|
specification_version: 4
|
86
86
|
summary: A client for voyageai.com.
|
87
87
|
test_files: []
|