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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8afba7d9e268ee2d7c8f606bb8dc13794839c960d31a0dada531dc92002d1122
4
- data.tar.gz: 29a4d077a33abda9c88eb95c17abeb1e785cde693ba5a85fc2e54967028c358b
3
+ metadata.gz: 7e546fe80fb40f83eb48bd084f1cdb125cb7ee33516a1a09e3f2c29d0e774db6
4
+ data.tar.gz: 3eb3252b3ec88cef85fa4a0f1235e9def378e739593a6fa8fb977fc4b24f8d00
5
5
  SHA512:
6
- metadata.gz: 3defa2dcaaee1f8da7e4fcd492d082d9ac63d1e5c22994b03ca1bff091327b84c883ef88dba1b1722bda1c7169eb6403227661fb649bac25aa2281c4188ec94a
7
- data.tar.gz: 0371ccd81feb78fb19566c9be5bb71c43306c395d47002a917cd314af2985dd92967126f69179a1ca976dae750fc787393e442f74d0134a42f4e112575d3cb4f
6
+ metadata.gz: 2d22ce96d45dcbb1293e8d0e57bfdefe4857c3fddae9fdd95459ff7d6a815b1ba6e580f5fb4734c6bf7d92bdcbc5796856e3afa77f574150911716a847e0c7e4
7
+ data.tar.gz: ff9db8160a7870d823021071e47e90a5098536bcd8b2f558799e838021a1bcbcce35d05a0c87abb1d4e3ddda66afa2e2ce10fd8762473aa3ef17313d4477e927
@@ -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?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module VoyageAI
4
- VERSION = "1.6.0"
4
+ VERSION = "1.8.0"
5
5
  end
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.6.0
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-01-08 00:00:00.000000000 Z
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.6.0
68
- changelog_uri: https://github.com/ksylvest/voyageai/releases/tag/v1.6.0
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.3.0
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.2
84
+ rubygems_version: 3.6.3
85
85
  specification_version: 4
86
86
  summary: A client for voyageai.com.
87
87
  test_files: []