omniai-mistral 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/omniai/mistral/client.rb +6 -5
- data/lib/omniai/mistral/config.rb +12 -6
- data/lib/omniai/mistral/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 382f5eb9d01087dbab76c84890ddd1414e89017714c211ec4163206f56f7557b
|
4
|
+
data.tar.gz: dad60217422c646066cd2c0a60339d52cd4347df31175ec889fdfbd735e19a33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
35
|
-
|
36
|
-
@host = host
|
37
|
+
super
|
37
38
|
end
|
38
39
|
|
39
40
|
# @return [HTTP::Client]
|
40
41
|
def connection
|
41
|
-
@connection ||=
|
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
|
-
#
|
5
|
+
# Configuration for Mistral.
|
6
6
|
class Config < OmniAI::Config
|
7
|
-
|
7
|
+
DEFAULT_HOST = 'https://api.mistral.ai'
|
8
8
|
|
9
|
-
|
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
|
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.
|
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-
|
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
|