omniai-google 1.2.1 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d4985887b388e14ec257b668a3ac086f9d5596afc0ba269f6cfa665d65baec17
4
- data.tar.gz: e07bf21fe683e1198d30d82cfeeed9c78c08edbf6d699a0b7d5ca04ec8a918f3
3
+ metadata.gz: 1dc0ec04a882a2e35a5d7ff7b613bde89641e57a67ed4a68cdb84ab72d04a982
4
+ data.tar.gz: a72573e3a57e13b6bf56e33c4133ea4a9ae0c4c3d79688979a8f166345508a6f
5
5
  SHA512:
6
- metadata.gz: f8b451d78695af76b98c3f874c31f025149cc0671f93e63450923755167fac1d286e4b175e660391f260b4cb7d5ff924c8e5fcfd9bcc3b39f226e5e616efa823
7
- data.tar.gz: 3d122560cbb2d62fa40793d03a4d5911bf4f8ab1976951edf84a794bdcb7dfef7339d9b1f85c593b2b3b3e7ef13f2333c992fa62bb7ce5caae65d2eb274e26f8
6
+ metadata.gz: 3cd82fccac3f31b37f9505569ff411d91c9c2a9429fde7308c7b5b34abe922bd4734613f355ed616ff27ff49502c17714d380d0676a2f6f63493fa4baf65c0bc
7
+ data.tar.gz: c1ac419641eebf177c72a425ac695e5fad10d09cd943998c5952d29ace751234a135eeb009e3000db47869de07db675bbadcddec6cd225ce851641635ffc2550
@@ -36,20 +36,6 @@ module OmniAI
36
36
  }.compact, json: payload)
37
37
  end
38
38
 
39
- # @param response [HTTP::Response]
40
- # @return [OmniAI::Google::Chat::Stream]
41
- def stream!(response:)
42
- raise Error, "#{self.class.name}#stream! unstreamable" unless @stream
43
-
44
- Stream.new(response:).stream! { |chunk| @stream.call(chunk) }
45
- end
46
-
47
- # @param response [HTTP::Response]
48
- # @param response [OmniAI::Google::Chat::Completion]
49
- def complete!(response:)
50
- Completion.new(data: response.parse)
51
- end
52
-
53
39
  # @return [Hash]
54
40
  def payload
55
41
  OmniAI::Google.config.chat_options.merge({
@@ -20,31 +20,29 @@ module OmniAI
20
20
  #
21
21
  # client = OmniAI::Google::Client.new
22
22
  class Client < OmniAI::Client
23
+ # @!attribute [rw] version
24
+ # @return [String, nil]
23
25
  attr_accessor :version
24
26
 
25
27
  # @param api_key [String] optional - defaults to `OmniAI::Google.config.api_key`
26
28
  # @param host [String] optional - defaults to `OmniAI::Google.config.host`
27
29
  # @param version [String] optional - defaults to `OmniAI::Google.config.version`
28
30
  # @param logger [Logger] optional - defaults to `OmniAI::Google.config.logger`
31
+ # @param timeout [Integer] optional - defaults to `OmniAI::Google.config.timeout`
29
32
  def initialize(
30
33
  api_key: OmniAI::Google.config.api_key,
31
34
  logger: OmniAI::Google.config.logger,
32
35
  host: OmniAI::Google.config.host,
33
- version: OmniAI::Google.config.version
36
+ version: OmniAI::Google.config.version,
37
+ timeout: OmniAI::Google.config.timeout
34
38
  )
35
39
  raise(ArgumentError, %(ENV['GOOGLE_API_KEY'] must be defined or `api_key` must be passed)) if api_key.nil?
36
40
 
37
- super(api_key:, logger:)
41
+ super(api_key:, host:, logger:, timeout:)
38
42
 
39
- @host = host
40
43
  @version = version
41
44
  end
42
45
 
43
- # @return [HTTP::Client]
44
- def connection
45
- HTTP.persistent(@host)
46
- end
47
-
48
46
  # @raise [OmniAI::Error]
49
47
  #
50
48
  # @param messages [String, Array, Hash]
@@ -2,16 +2,29 @@
2
2
 
3
3
  module OmniAI
4
4
  module Google
5
- # Config for the Google `api_key` / `host` / `logger` / `version`, `chat_options`.
5
+ # Configuration for Google.
6
6
  class Config < OmniAI::Config
7
- attr_accessor :chat_options, :version
7
+ DEFAULT_HOST = 'https://generativelanguage.googleapis.com'
8
+ DEFAULT_VERSION = 'v1'
8
9
 
9
- def initialize
10
- super
11
- @api_key = ENV.fetch('GOOGLE_API_KEY', nil)
12
- @host = ENV.fetch('GOOGLE_HOST', 'https://generativelanguage.googleapis.com')
13
- @version = ENV.fetch('GOOGLE_VERSION', 'v1')
14
- @chat_options = {}
10
+ # @!attribute [rw] version
11
+ # @return [String, nil]
12
+ attr_accessor :version
13
+
14
+ # @param api_key [String, nil] optional - defaults to `ENV['GOOGLE_API_KEY']`
15
+ # @param host [String, nil] optional - defaults to `ENV['GOOGLE_HOST'] w/ fallback to `DEFAULT_HOST`
16
+ # @param version [String, nil] optional - defaults to `ENV['GOOGLE_VERSION'] w/ fallback to `DEFAULT_VERSION`
17
+ # @param logger [Logger, nil] optional - defaults to
18
+ # @param timeout [Integer, Hash, nil] optional
19
+ def initialize(
20
+ api_key: ENV.fetch('GOOGLE_API_KEY', nil),
21
+ host: ENV.fetch('GOOGLE_HOST', DEFAULT_HOST),
22
+ version: ENV.fetch('GOOGLE_VERSION', DEFAULT_VERSION),
23
+ logger: nil,
24
+ timeout: nil
25
+ )
26
+ super(api_key:, host:, logger:, timeout:)
27
+ @version = version
15
28
  end
16
29
  end
17
30
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAI
4
4
  module Google
5
- VERSION = '1.2.1'
5
+ VERSION = '1.4.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniai-google
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Sylvestre
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-06-21 00:00:00.000000000 Z
11
+ date: 2024-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: event_stream_parser