omniai-mistral 1.7.0 → 1.8.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 +6 -6
- data/lib/omniai/mistral/chat.rb +2 -2
- 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: ed42e145797e63aa3725225494e85cbf842e5ee7720e0b703ae5d129e63d6312
|
4
|
+
data.tar.gz: a1169acf35660a06119ff591704ca6da9f94f25675dc97c2e5d26cb6060ddb71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04373ce5f992a56861931f2a1d1658d4e2e53b9f26706b1d32a19b25773c0a78659ba2f349723eb5e21bb099652874f84939146a227fe906de953b4014a4bcef
|
7
|
+
data.tar.gz: 06b52cea6dd021cc9c7ffb2cac03eca346f78e81f54eff8d63b059bc9f6c6eba7eea45a3216ec4d7e42ad72dcf1f0b442dfc0cfc91cb3cf2590322acde55196d
|
data/README.md
CHANGED
@@ -42,7 +42,7 @@ A chat completion is generated by passing in prompts using any a variety of form
|
|
42
42
|
|
43
43
|
```ruby
|
44
44
|
completion = client.chat('Tell me a joke!')
|
45
|
-
completion.
|
45
|
+
completion.text # 'Why did the chicken cross the road? To get to the other side.'
|
46
46
|
```
|
47
47
|
|
48
48
|
```ruby
|
@@ -50,7 +50,7 @@ completion = client.chat do |prompt|
|
|
50
50
|
prompt.system('You are a helpful assistant.')
|
51
51
|
prompt.user('What is the capital of Canada?')
|
52
52
|
end
|
53
|
-
completion.
|
53
|
+
completion.text # 'The capital of Canada is Ottawa.'
|
54
54
|
```
|
55
55
|
|
56
56
|
#### Model
|
@@ -59,7 +59,7 @@ completion.choice.message.content # 'The capital of Canada is Ottawa.'
|
|
59
59
|
|
60
60
|
```ruby
|
61
61
|
completion = client.chat('Provide code for fibonacci', model: OmniAI::Mistral::Chat::Model::CODESTRAL)
|
62
|
-
completion.
|
62
|
+
completion.text # 'def fibonacci(n)...end'
|
63
63
|
```
|
64
64
|
|
65
65
|
[Mistral API Reference `model`](https://docs.mistral.ai/getting-started/models/)
|
@@ -70,7 +70,7 @@ completion.choice.message.content # 'def fibonacci(n)...end'
|
|
70
70
|
|
71
71
|
```ruby
|
72
72
|
completion = client.chat('Pick a number between 1 and 5', temperature: 1.0)
|
73
|
-
completion.
|
73
|
+
completion.text # '3'
|
74
74
|
```
|
75
75
|
|
76
76
|
[Mistral API Reference `temperature`](https://docs.mistral.ai/api/)
|
@@ -81,7 +81,7 @@ completion.choice.message.content # '3'
|
|
81
81
|
|
82
82
|
```ruby
|
83
83
|
stream = proc do |chunk|
|
84
|
-
print(chunk.
|
84
|
+
print(chunk.text) # 'Better', 'three', 'hours', ...
|
85
85
|
end
|
86
86
|
client.chat('Be poetic.', stream:)
|
87
87
|
```
|
@@ -97,7 +97,7 @@ completion = client.chat(format: :json) do |prompt|
|
|
97
97
|
prompt.system(OmniAI::Chat::JSON_PROMPT)
|
98
98
|
prompt.user('What is the name of the drummer for the Beatles?')
|
99
99
|
end
|
100
|
-
JSON.parse(completion.
|
100
|
+
JSON.parse(completion.text) # { "name": "Ringo" }
|
101
101
|
```
|
102
102
|
|
103
103
|
[Mistral API Reference `response_format`](https://docs.mistral.ai/api/)
|
data/lib/omniai/mistral/chat.rb
CHANGED
@@ -19,7 +19,7 @@ module OmniAI
|
|
19
19
|
CODESTRAL = 'codestral-latest'
|
20
20
|
end
|
21
21
|
|
22
|
-
DEFAULT_MODEL = Model::
|
22
|
+
DEFAULT_MODEL = Model::LARGE
|
23
23
|
|
24
24
|
module Role
|
25
25
|
ASSISTANT = 'assistant'
|
@@ -39,7 +39,7 @@ module OmniAI
|
|
39
39
|
stream: @stream.nil? ? nil : !@stream.nil?,
|
40
40
|
temperature: @temperature,
|
41
41
|
response_format: (JSON_RESPONSE_FORMAT if @format.eql?(:json)),
|
42
|
-
tools: @tools&.map(&:
|
42
|
+
tools: @tools&.map(&:serialize),
|
43
43
|
}).compact
|
44
44
|
end
|
45
45
|
|
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.8.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-08-
|
11
|
+
date: 2024-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: event_stream_parser
|