omniai-mistral 0.1.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +14 -0
- data/README.md +99 -16
- data/lib/omniai/mistral/chat.rb +49 -0
- data/lib/omniai/mistral/client.rb +58 -0
- data/lib/omniai/mistral/config.rb +17 -0
- data/lib/omniai/mistral/version.rb +1 -1
- data/lib/omniai/mistral.rb +17 -3
- metadata +16 -13
- data/.rspec +0 -3
- data/.rubocop.yml +0 -8
- data/Rakefile +0 -12
- data/sig/omniai/mistral.rbs +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34f5225c5523b037112416e04de0ff1861568756d306506b547c981646742210
|
4
|
+
data.tar.gz: dfc5114348aa17a5f2f32c60e6cdefb8207d42c9f339de53c360fd132b1dc46b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c31d0f5d1a26c72c717f69872ca9c1adcbf12ea1409aee7c3684ad1fdd4d809d84a6f34030f6fb562b3f7d66718da96da732c0eda9d5e4ea3ac791882b7de4f
|
7
|
+
data.tar.gz: 3abb924937c1a3d5fc065e06811d41c1db49a24ca2a3617834b9da1bb2abb7cbcdef4d70c7124f8d4624381b1cba782732f5a02d06acfc71272760cdf4d80164
|
data/Gemfile
ADDED
data/README.md
CHANGED
@@ -1,31 +1,114 @@
|
|
1
|
-
#
|
1
|
+
# OmniAI::Mistral
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/omniai/mistral`. To experiment with that code, run `bin/console` for an interactive prompt.
|
3
|
+
An Mistral implementation of the [OmniAI](https://github.com/ksylvest/omniai) APIs.
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
9
|
-
|
7
|
+
```sh
|
8
|
+
gem install omniai-mistral
|
9
|
+
```
|
10
10
|
|
11
|
-
|
11
|
+
## Usage
|
12
12
|
|
13
|
-
|
13
|
+
### Client
|
14
14
|
|
15
|
-
|
15
|
+
A client is setup as follows if `ENV['MISTRAL_API_KEY']` exists:
|
16
16
|
|
17
|
-
|
17
|
+
```ruby
|
18
|
+
client = OmniAI::Mistral::Client.new
|
19
|
+
```
|
18
20
|
|
19
|
-
|
21
|
+
A client may also be passed the following options:
|
22
|
+
|
23
|
+
- `api_key` (required - default is `ENV['MISTRAL_API_KEY']`)
|
24
|
+
- `host` (optional)
|
25
|
+
|
26
|
+
### Configuration
|
27
|
+
|
28
|
+
Global configuration is supported for the following options:
|
29
|
+
|
30
|
+
```ruby
|
31
|
+
OmniAI::Mistral.configure do |config|
|
32
|
+
config.api_key = 'sk-...' # default: ENV['MISTRAL_API_KEY']
|
33
|
+
config.host = '...' # default: 'https://api.mistral.ai'
|
34
|
+
end
|
35
|
+
```
|
36
|
+
|
37
|
+
### Chat
|
38
|
+
|
39
|
+
A chat completion is generated by passing in prompts using any a variety of formats:
|
40
|
+
|
41
|
+
```ruby
|
42
|
+
completion = client.chat('Tell me a joke!')
|
43
|
+
completion.choice.message.content # 'Why did the chicken cross the road? To get to the other side.'
|
44
|
+
```
|
45
|
+
|
46
|
+
```ruby
|
47
|
+
completion = client.chat({
|
48
|
+
role: OmniAI::Chat::Role::USER,
|
49
|
+
content: 'Is it wise to jump off a bridge?'
|
50
|
+
})
|
51
|
+
completion.choice.message.content # 'No.'
|
52
|
+
```
|
53
|
+
|
54
|
+
```ruby
|
55
|
+
completion = client.chat([
|
56
|
+
{
|
57
|
+
role: OmniAI::Chat::Role::SYSTEM,
|
58
|
+
content: 'You are a helpful assistant.'
|
59
|
+
},
|
60
|
+
'What is the capital of Canada?',
|
61
|
+
])
|
62
|
+
completion.choice.message.content # 'The capital of Canada is Ottawa.'
|
63
|
+
```
|
64
|
+
|
65
|
+
#### Model
|
66
|
+
|
67
|
+
`model` takes an optional string (default is `mistral-medium-latest`):
|
68
|
+
|
69
|
+
```ruby
|
70
|
+
completion = client.chat('Provide code for fibonacci', model: OmniAI::Mistral::Chat::Model::CODESTRAL)
|
71
|
+
completion.choice.message.content # 'def fibonacci(n)...end'
|
72
|
+
```
|
73
|
+
|
74
|
+
[Mistral API Reference `model`](https://docs.mistral.ai/getting-started/models/)
|
75
|
+
|
76
|
+
#### Temperature
|
77
|
+
|
78
|
+
`temperature` takes an optional float between `0.0` and `1.0` (defaults is `0.7`):
|
79
|
+
|
80
|
+
```ruby
|
81
|
+
completion = client.chat('Pick a number between 1 and 5', temperature: 1.0)
|
82
|
+
completion.choice.message.content # '3'
|
83
|
+
```
|
84
|
+
|
85
|
+
[Mistral API Reference `temperature`](https://docs.mistral.ai/api/)
|
86
|
+
|
87
|
+
#### Stream
|
88
|
+
|
89
|
+
`stream` takes an optional a proc to stream responses in real-time chunks instead of waiting for a complete response:
|
90
|
+
|
91
|
+
```ruby
|
92
|
+
stream = proc do |chunk|
|
93
|
+
print(chunk.choice.delta.content) # 'Better', 'three', 'hours', ...
|
94
|
+
end
|
95
|
+
client.chat('Be poetic.', stream:)
|
96
|
+
```
|
20
97
|
|
21
|
-
|
98
|
+
[Mistral API Reference `stream`](https://docs.mistral.ai/api/)
|
22
99
|
|
23
|
-
|
100
|
+
#### Format
|
24
101
|
|
25
|
-
|
102
|
+
`format` takes an optional symbol (`:json`) and that sets the `response_format` to `json_object`:
|
26
103
|
|
27
|
-
|
104
|
+
```ruby
|
105
|
+
completion = client.chat([
|
106
|
+
{ role: OmniAI::Chat::Role::SYSTEM, content: OmniAI::Chat::JSON_PROMPT },
|
107
|
+
{ role: OmniAI::Chat::Role::USER, content: 'What is the name of the drummer for the Beatles?' }
|
108
|
+
], format: :json)
|
109
|
+
JSON.parse(completion.choice.message.content) # { "name": "Ringo" }
|
110
|
+
```
|
28
111
|
|
29
|
-
|
112
|
+
[Mistral API Reference `response_format`](https://docs.mistral.ai/api/)
|
30
113
|
|
31
|
-
|
114
|
+
> When using JSON mode you MUST also instruct the model to produce JSON yourself with a system or a user message.
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module OmniAI
|
4
|
+
module Mistral
|
5
|
+
# A Mistral chat implementation.
|
6
|
+
#
|
7
|
+
# Usage:
|
8
|
+
#
|
9
|
+
# chat = OmniAI::Mistral::Chat.new(client: client)
|
10
|
+
# chat.completion('Tell me a joke.')
|
11
|
+
# chat.completion(['Tell me a joke.'])
|
12
|
+
# chat.completion({ role: 'user', content: 'Tell me a joke.' })
|
13
|
+
# chat.completion([{ role: 'system', content: 'Tell me a joke.' }])
|
14
|
+
class Chat < OmniAI::Chat
|
15
|
+
module Model
|
16
|
+
SMALL = 'mistral-small-latest'
|
17
|
+
MEDIUM = 'mistral-medium-latest'
|
18
|
+
LARGE = 'mistral-large-latest'
|
19
|
+
CODESTRAL = 'codestral-latest'
|
20
|
+
end
|
21
|
+
|
22
|
+
module Role
|
23
|
+
ASSISTANT = 'assistant'
|
24
|
+
USER = 'user'
|
25
|
+
SYSTEM = 'system'
|
26
|
+
end
|
27
|
+
|
28
|
+
JSON_RESPONSE_FORMAT = { type: 'json_object' }.freeze
|
29
|
+
|
30
|
+
protected
|
31
|
+
|
32
|
+
# @return [Hash]
|
33
|
+
def payload
|
34
|
+
OmniAI::Mistral.config.chat_options.merge({
|
35
|
+
messages:,
|
36
|
+
model: @model,
|
37
|
+
stream: @stream.nil? ? nil : !@stream.nil?,
|
38
|
+
temperature: @temperature,
|
39
|
+
response_format: (JSON_RESPONSE_FORMAT if @format.eql?(:json)),
|
40
|
+
}).compact
|
41
|
+
end
|
42
|
+
|
43
|
+
# @return [String]
|
44
|
+
def path
|
45
|
+
"/#{OmniAI::Mistral::Client::VERSION}/chat/completions"
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module OmniAI
|
4
|
+
module Mistral
|
5
|
+
# An Mistral client implementation. Usage:
|
6
|
+
#
|
7
|
+
# w/ `api_key``:
|
8
|
+
# client = OmniAI::Mistral::Client.new(api_key: '...')
|
9
|
+
#
|
10
|
+
# w/ ENV['MISTRAL_API_KEY']:
|
11
|
+
#
|
12
|
+
# ENV['MISTRAL_API_KEY'] = '...'
|
13
|
+
# client = OmniAI::Mistral::Client.new
|
14
|
+
#
|
15
|
+
# w/ config:
|
16
|
+
#
|
17
|
+
# OmniAI::Mistral.configure do |config|
|
18
|
+
# config.api_key = '...'
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
# client = OmniAI::Mistral::Client.new
|
22
|
+
class Client < OmniAI::Client
|
23
|
+
VERSION = 'v1'
|
24
|
+
|
25
|
+
# @param api_key [String] optional - defaults to `OmniAI::Mistral.config.api_key`
|
26
|
+
# @param host [String] optional - defaults to `OmniAI::Mistral.config.host`
|
27
|
+
def initialize(
|
28
|
+
api_key: OmniAI::Mistral.config.api_key,
|
29
|
+
logger: OmniAI::Mistral.config.logger,
|
30
|
+
host: OmniAI::Mistral.config.host
|
31
|
+
)
|
32
|
+
raise(ArgumentError, %(ENV['MISTRAL_API_KEY'] must be defined or `api_key` must be passed)) if api_key.nil?
|
33
|
+
|
34
|
+
super(api_key:, logger:)
|
35
|
+
|
36
|
+
@host = host
|
37
|
+
end
|
38
|
+
|
39
|
+
# @return [HTTP::Client]
|
40
|
+
def connection
|
41
|
+
@connection ||= HTTP.auth("Bearer #{api_key}").persistent(@host)
|
42
|
+
end
|
43
|
+
|
44
|
+
# @raise [OmniAI::Error]
|
45
|
+
#
|
46
|
+
# @param messages [String, Array, Hash]
|
47
|
+
# @param model [String] optional
|
48
|
+
# @param format [Symbol] optional :text or :json
|
49
|
+
# @param temperature [Float, nil] optional
|
50
|
+
# @param stream [Proc, nil] optional
|
51
|
+
#
|
52
|
+
# @return [OmniAI::Chat::Completion]
|
53
|
+
def chat(messages, model: Chat::Model::MEDIUM, temperature: nil, format: nil, stream: nil)
|
54
|
+
Chat.process!(messages, model:, temperature:, format:, stream:, client: self)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module OmniAI
|
4
|
+
module Mistral
|
5
|
+
# Config for the Mistral `api_key` / `host` / `logger`, `chat_options`.
|
6
|
+
class Config < OmniAI::Config
|
7
|
+
attr_accessor :chat_options
|
8
|
+
|
9
|
+
def initialize
|
10
|
+
super
|
11
|
+
@api_key = ENV.fetch('MISTRAL_API_KEY', nil)
|
12
|
+
@host = ENV.fetch('MISTRAL_HOST', 'https://api.mistral.ai')
|
13
|
+
@chat_options = {}
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/lib/omniai/mistral.rb
CHANGED
@@ -1,10 +1,24 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
require 'event_stream_parser'
|
4
|
+
require 'omniai'
|
5
|
+
require 'zeitwerk'
|
6
|
+
|
7
|
+
loader = Zeitwerk::Loader.for_gem
|
8
|
+
loader.push_dir(__dir__, namespace: OmniAI)
|
9
|
+
loader.setup
|
4
10
|
|
5
11
|
module OmniAI
|
12
|
+
# A namespace for everything Mistral.
|
6
13
|
module Mistral
|
7
|
-
|
8
|
-
|
14
|
+
# @return [OmniAI::Mistral::Config]
|
15
|
+
def self.config
|
16
|
+
@config ||= Config.new
|
17
|
+
end
|
18
|
+
|
19
|
+
# @yield [OmniAI::Mistral::Config]
|
20
|
+
def self.configure
|
21
|
+
yield config
|
22
|
+
end
|
9
23
|
end
|
10
24
|
end
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniai-mistral
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 1.0.1
|
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-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: event_stream_parser
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
@@ -25,13 +25,13 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: omniai
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
|
-
type: :
|
34
|
+
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
@@ -39,13 +39,13 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: zeitwerk
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
|
-
type: :
|
48
|
+
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
@@ -59,16 +59,19 @@ executables: []
|
|
59
59
|
extensions: []
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
|
-
-
|
63
|
-
- ".rubocop.yml"
|
62
|
+
- Gemfile
|
64
63
|
- README.md
|
65
|
-
- Rakefile
|
66
64
|
- lib/omniai/mistral.rb
|
65
|
+
- lib/omniai/mistral/chat.rb
|
66
|
+
- lib/omniai/mistral/client.rb
|
67
|
+
- lib/omniai/mistral/config.rb
|
67
68
|
- lib/omniai/mistral/version.rb
|
68
|
-
- sig/omniai/mistral.rbs
|
69
69
|
homepage: https://github.com/ksylvest/omniai-mistral
|
70
70
|
licenses: []
|
71
|
-
metadata:
|
71
|
+
metadata:
|
72
|
+
homepage_uri: https://github.com/ksylvest/omniai-mistral
|
73
|
+
changelog_uri: https://github.com/ksylvest/omniai-mistral/releases
|
74
|
+
rubygems_mfa_required: 'true'
|
72
75
|
post_install_message:
|
73
76
|
rdoc_options: []
|
74
77
|
require_paths:
|
@@ -77,7 +80,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
80
|
requirements:
|
78
81
|
- - ">="
|
79
82
|
- !ruby/object:Gem::Version
|
80
|
-
version: 3.
|
83
|
+
version: 3.3.0
|
81
84
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
85
|
requirements:
|
83
86
|
- - ">="
|
data/.rspec
DELETED
data/.rubocop.yml
DELETED
data/Rakefile
DELETED