omniai-google 2.2.2 → 2.3.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/README.md +2 -4
- data/lib/omniai/google/client.rb +5 -0
- data/lib/omniai/google/embed.rb +44 -7
- data/lib/omniai/google/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef7814ad2fd60f7d89dd87a2350c23496d4846e172393bb0b8fbf3ffde48347f
|
4
|
+
data.tar.gz: 7ead40b0168c010885d0af4fb8633d5da67ef187508777aa506528a5946bef75
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f49152ce0896a0c4ed9668dcc5f4abce7363d4dfe907fd79a7511363fa5e8b7ec1797d1449653c22fb5dfbb9f49054359d7d57102607ec59699c113975d7fdb4
|
7
|
+
data.tar.gz: 8a88be48a793faefd52d98928fc57b9b1acdc84e1ad0d82735ca6605e63cfdfb7119c6835dc88c51d323cb4d0155a61d5c49995ae2f7b546b937ab333bb90471
|
data/README.md
CHANGED
@@ -35,9 +35,7 @@ A client may also be passed the following options:
|
|
35
35
|
|
36
36
|
Vertex AI and Google AI offer different options for interacting w/ Google's AI APIs. Checkout the [Vertex AI and Google AI differences](https://cloud.google.com/vertex-ai/generative-ai/docs/overview#how-gemini-vertex-different-gemini-aistudio) to determine which option best fits your requirements.
|
37
37
|
|
38
|
-
#### Configuration w/
|
39
|
-
|
40
|
-
**w/ `api_key`**
|
38
|
+
#### Configuration w/ Google AI
|
41
39
|
|
42
40
|
If using Gemini simply provide an `api_key`:
|
43
41
|
|
@@ -47,7 +45,7 @@ OmniAI::Google.configure do |config|
|
|
47
45
|
end
|
48
46
|
```
|
49
47
|
|
50
|
-
#### Configuration w/ Vertex
|
48
|
+
#### Configuration w/ Vertex AI
|
51
49
|
|
52
50
|
If using Vertex supply the `credentials`, `host`, `location_id` and `project_id`:
|
53
51
|
|
data/lib/omniai/google/client.rb
CHANGED
data/lib/omniai/google/embed.rb
CHANGED
@@ -12,6 +12,7 @@ module OmniAI
|
|
12
12
|
class Embed < OmniAI::Embed
|
13
13
|
module Model
|
14
14
|
TEXT_EMBEDDING_004 = "text-embedding-004"
|
15
|
+
TEXT_EMBEDDING_005 = "text-embedding-005"
|
15
16
|
TEXT_MULTILINGUAL_EMBEDDING_002 = "text-multilingual-embedding-002"
|
16
17
|
EMBEDDING = TEXT_EMBEDDING_004
|
17
18
|
MULTILINGUAL_EMBEDDING = TEXT_MULTILINGUAL_EMBEDDING_002
|
@@ -19,24 +20,48 @@ module OmniAI
|
|
19
20
|
|
20
21
|
DEFAULT_MODEL = Model::EMBEDDING
|
21
22
|
|
22
|
-
|
23
|
+
DEFAULT_EMBEDDINGS_DESERIALIZER = proc do |data, *|
|
23
24
|
data["embeddings"].map { |embedding| embedding["values"] }
|
24
25
|
end
|
25
26
|
|
27
|
+
VERTEX_EMBEDDINGS_DESERIALIZER = proc do |data, *|
|
28
|
+
data["predictions"].map { |prediction| prediction["embeddings"]["values"] }
|
29
|
+
end
|
30
|
+
|
31
|
+
# @return [Context]
|
32
|
+
DEFAULT_CONTEXT = Context.build do |context|
|
33
|
+
context.deserializers[:embeddings] = DEFAULT_EMBEDDINGS_DESERIALIZER
|
34
|
+
end
|
35
|
+
|
26
36
|
# @return [Context]
|
27
|
-
|
28
|
-
context.deserializers[:embeddings] =
|
37
|
+
VERTEX_CONTEXT = Context.build do |context|
|
38
|
+
context.deserializers[:embeddings] = VERTEX_EMBEDDINGS_DESERIALIZER
|
29
39
|
end
|
30
40
|
|
31
41
|
protected
|
32
42
|
|
43
|
+
# @return [Boolean]
|
44
|
+
def vertex?
|
45
|
+
@client.vertex?
|
46
|
+
end
|
47
|
+
|
48
|
+
# @return [Context]
|
49
|
+
def context
|
50
|
+
vertex? ? VERTEX_CONTEXT : DEFAULT_CONTEXT
|
51
|
+
end
|
52
|
+
|
33
53
|
# @param response [HTTP::Response]
|
34
54
|
# @return [Response]
|
35
55
|
def parse!(response:)
|
36
|
-
Response.new(data: response.parse, context:
|
56
|
+
Response.new(data: response.parse, context:)
|
57
|
+
end
|
58
|
+
|
59
|
+
# @return [Array[Hash]]
|
60
|
+
def instances
|
61
|
+
arrayify(@input).map { |content| { content: } }
|
37
62
|
end
|
38
63
|
|
39
|
-
# @return [Array
|
64
|
+
# @return [Array[Hash]]
|
40
65
|
def requests
|
41
66
|
arrayify(@input).map do |text|
|
42
67
|
{
|
@@ -48,14 +73,26 @@ module OmniAI
|
|
48
73
|
|
49
74
|
# @return [Hash]
|
50
75
|
def payload
|
51
|
-
{ requests: }
|
76
|
+
vertex? ? { instances: } : { requests: }
|
77
|
+
end
|
78
|
+
|
79
|
+
# @return [Hash]
|
80
|
+
def params
|
81
|
+
{ key: (@client.api_key unless @client.credentials?) }.compact
|
52
82
|
end
|
53
83
|
|
54
84
|
# @return [String]
|
55
85
|
def path
|
56
|
-
"/#{@client.path}/models/#{@model}
|
86
|
+
"/#{@client.path}/models/#{@model}:#{procedure}"
|
87
|
+
end
|
88
|
+
|
89
|
+
# @return [String]
|
90
|
+
def procedure
|
91
|
+
vertex? ? "predict" : "batchEmbedContents"
|
57
92
|
end
|
58
93
|
|
94
|
+
# @param input [Object]
|
95
|
+
# @return [Array]
|
59
96
|
def arrayify(input)
|
60
97
|
input.is_a?(Array) ? input : [input]
|
61
98
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniai-google
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin Sylvestre
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-04-
|
10
|
+
date: 2025-04-04 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: event_stream_parser
|
@@ -43,14 +43,14 @@ dependencies:
|
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '2.
|
46
|
+
version: '2.3'
|
47
47
|
type: :runtime
|
48
48
|
prerelease: false
|
49
49
|
version_requirements: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '2.
|
53
|
+
version: '2.3'
|
54
54
|
- !ruby/object:Gem::Dependency
|
55
55
|
name: zeitwerk
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|