omniai-mistral 1.2.0 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 422f9590834021e3c89c5289fbab907797748ec42b486748f55db20845a9005f
4
- data.tar.gz: e26a30e7e9532e7a0589f7c3fd076a621771693a8d2af3814f28ccd707bba12e
3
+ metadata.gz: 382f5eb9d01087dbab76c84890ddd1414e89017714c211ec4163206f56f7557b
4
+ data.tar.gz: dad60217422c646066cd2c0a60339d52cd4347df31175ec889fdfbd735e19a33
5
5
  SHA512:
6
- metadata.gz: 0ccec2ed5709e7993f8e0936959d4186e6e08458add50233ded53a0163eaab0dad4dd5d2183ba68add2c2346d1237676705eebca195fd63222db34396c962ac6
7
- data.tar.gz: 58913437e42cb83b129920c12c3ce968cd3191e4d496f701f63cdd31509cdbd11e5810956d9ead04b1dfbb10c89b86cbee89c35d45a58f727da3ef5ea43c26d5
6
+ metadata.gz: 79e0f8d805a3d577facbbd6477be06ca38de8da9370987e6ff0bea1bc9175222d12ea188d15769ecb571849ff1c3e06f27ff4ca7ef01d98b82d1651dc0670656
7
+ data.tar.gz: 773bc4ba186ee0a1ae2d27c8ca1862dfafd5d44b90ed99993f8e420c5eba89422855ba433ea14c2d894a327e8e44194df1ff25f7d4436c7ff335f0932d5701e2
@@ -24,21 +24,22 @@ module OmniAI
24
24
 
25
25
  # @param api_key [String] optional - defaults to `OmniAI::Mistral.config.api_key`
26
26
  # @param host [String] optional - defaults to `OmniAI::Mistral.config.host`
27
+ # @param logger [Logger] optional - defaults to `OmniAI::Mistral.config.logger`
28
+ # @param timeout [Integer] optional - defaults to `OmniAI::Mistral.config.timeout`
27
29
  def initialize(
28
30
  api_key: OmniAI::Mistral.config.api_key,
31
+ host: OmniAI::Mistral.config.host,
29
32
  logger: OmniAI::Mistral.config.logger,
30
- host: OmniAI::Mistral.config.host
33
+ timeout: OmniAI::Mistral.config.timeout
31
34
  )
32
35
  raise(ArgumentError, %(ENV['MISTRAL_API_KEY'] must be defined or `api_key` must be passed)) if api_key.nil?
33
36
 
34
- super(api_key:, logger:)
35
-
36
- @host = host
37
+ super
37
38
  end
38
39
 
39
40
  # @return [HTTP::Client]
40
41
  def connection
41
- @connection ||= HTTP.auth("Bearer #{api_key}").persistent(@host)
42
+ @connection ||= super.auth("Bearer #{api_key}")
42
43
  end
43
44
 
44
45
  # @raise [OmniAI::Error]
@@ -2,15 +2,21 @@
2
2
 
3
3
  module OmniAI
4
4
  module Mistral
5
- # Config for the Mistral `api_key` / `host` / `logger`, `chat_options`.
5
+ # Configuration for Mistral.
6
6
  class Config < OmniAI::Config
7
- attr_accessor :chat_options
7
+ DEFAULT_HOST = 'https://api.mistral.ai'
8
8
 
9
- def initialize
9
+ # @param api_key [String, nil] optional - defaults to `ENV['MISTRAL_API_KEY']`
10
+ # @param host [String, nil] optional - defaults to `ENV['MISTRAL_HOST'] w/ fallback to `DEFAULT_HOST`
11
+ # @param logger [Logger, nil] optional - defaults to
12
+ # @param timeout [Integer, Hash, nil] optional
13
+ def initialize(
14
+ api_key: ENV.fetch('MISTRAL_API_KEY', nil),
15
+ host: ENV.fetch('MISTRAL_HOST', DEFAULT_HOST),
16
+ logger: nil,
17
+ timeout: nil
18
+ )
10
19
  super
11
- @api_key = ENV.fetch('MISTRAL_API_KEY', nil)
12
- @host = ENV.fetch('MISTRAL_HOST', 'https://api.mistral.ai')
13
- @chat_options = {}
14
20
  end
15
21
  end
16
22
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAI
4
4
  module Mistral
5
- VERSION = '1.2.0'
5
+ VERSION = '1.3.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniai-mistral
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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-20 00:00:00.000000000 Z
11
+ date: 2024-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: event_stream_parser