omniai 1.0.6 → 1.0.8
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/Gemfile +2 -0
- data/README.md +4 -7
- data/lib/omniai/chat/choice.rb +12 -17
- data/lib/omniai/chat/completion.rb +1 -1
- data/lib/omniai/chat/delta.rb +16 -11
- data/lib/omniai/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1971cb590311266b342596c44ff56398999b8657e9f6cf2b8d2afffb8b91257b
|
4
|
+
data.tar.gz: 7866818c3dd9c1af3b03a351ecdc38c527ef1d08bb877533a9f9159bce8d5ed5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c93b8a97fc2ca09765e9c2c537c15491a7344cc505e6204addd972dbb2c7ee2219213d2892745df48bdd4c0193bf3d80391142da2462de437290fc3a6d442db
|
7
|
+
data.tar.gz: 0b7d13dfde39f89c78a57ea3b03549262fb7b9962d127a01e89ca3785402098b6c0e34fc957145615d279a14f4d644769c25a2d3f833aa9c1136397d6b7384b3
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -66,7 +66,7 @@ Clients that support chat (e.g. Anthropic w/ "Claude", Google w/ "Gemini", Mistr
|
|
66
66
|
|
67
67
|
```ruby
|
68
68
|
completion = client.chat('Tell me a joke.')
|
69
|
-
|
69
|
+
completion.choice.message.content # '...'
|
70
70
|
```
|
71
71
|
|
72
72
|
#### w/ a Collection of Messages
|
@@ -77,13 +77,10 @@ messages = [
|
|
77
77
|
role: 'system',
|
78
78
|
content: 'You are a helpful assistant with an expertise in geography.',
|
79
79
|
},
|
80
|
-
|
81
|
-
role: 'user',
|
82
|
-
content: 'What is the capital of Canada?',
|
83
|
-
},
|
80
|
+
'What is the capital of Canada?'
|
84
81
|
]
|
85
82
|
completion = client.chat(messages, model: '...', temperature: 0.7, format: :json)
|
86
|
-
|
83
|
+
completion.choice.message.content
|
87
84
|
```
|
88
85
|
|
89
86
|
#### w/ a Collection of Files
|
@@ -103,7 +100,7 @@ message = {
|
|
103
100
|
}
|
104
101
|
|
105
102
|
completion = client.chat(message)
|
106
|
-
|
103
|
+
completion.choice.message.content
|
107
104
|
```
|
108
105
|
|
109
106
|
#### Streaming
|
data/lib/omniai/chat/choice.rb
CHANGED
@@ -4,28 +4,23 @@ module OmniAI
|
|
4
4
|
class Chat
|
5
5
|
# A choice returned by the API.
|
6
6
|
class Choice
|
7
|
-
attr_accessor :
|
7
|
+
attr_accessor :index, :delta, :message
|
8
8
|
|
9
9
|
# @param data [Hash]
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
def index
|
16
|
-
@data['index']
|
17
|
-
end
|
10
|
+
# @return [OmniAI::Chat::Choice]
|
11
|
+
def self.for(data:)
|
12
|
+
index = data['index']
|
13
|
+
delta = Delta.for(data: data['delta']) if data['delta']
|
14
|
+
message = Message.for(data: data['message']) if data['message']
|
18
15
|
|
19
|
-
|
20
|
-
def delta
|
21
|
-
Delta.new(data: @data['delta']) if @data['delta']
|
16
|
+
new(index:, delta:, message:)
|
22
17
|
end
|
23
18
|
|
24
|
-
# @
|
25
|
-
def message
|
26
|
-
|
27
|
-
|
28
|
-
@message
|
19
|
+
# @param data [Hash]
|
20
|
+
def initialize(index:, delta:, message:)
|
21
|
+
@index = index
|
22
|
+
@delta = delta
|
23
|
+
@message = message
|
29
24
|
end
|
30
25
|
end
|
31
26
|
end
|
@@ -40,7 +40,7 @@ module OmniAI
|
|
40
40
|
|
41
41
|
# @return [Array<OmniAI::Chat::Choice>]
|
42
42
|
def choices
|
43
|
-
@choices ||= @data['choices'].map { |data| Choice.
|
43
|
+
@choices ||= @data['choices'].map { |data| Choice.for(data:) }
|
44
44
|
end
|
45
45
|
|
46
46
|
# @param [index] [Integer] optional - default is 0
|
data/lib/omniai/chat/delta.rb
CHANGED
@@ -4,22 +4,27 @@ module OmniAI
|
|
4
4
|
class Chat
|
5
5
|
# A delta returned by the API.
|
6
6
|
class Delta
|
7
|
-
attr_accessor :
|
7
|
+
attr_accessor :role, :content
|
8
8
|
|
9
|
-
# @param
|
10
|
-
# @
|
11
|
-
def
|
12
|
-
|
9
|
+
# @param data [Hash]
|
10
|
+
# @return [OmniAI::Chat::Message]
|
11
|
+
def self.for(data:)
|
12
|
+
content = data['content'] || data[:content]
|
13
|
+
role = data['role'] || data[:role]
|
14
|
+
|
15
|
+
new(content:, role: role || Role::USER)
|
13
16
|
end
|
14
17
|
|
15
|
-
# @
|
16
|
-
|
17
|
-
|
18
|
+
# @param content [String]
|
19
|
+
# @param role [String]
|
20
|
+
def initialize(content:, role: nil)
|
21
|
+
@content = content
|
22
|
+
@role = role
|
18
23
|
end
|
19
24
|
|
20
|
-
# @return [String
|
21
|
-
def
|
22
|
-
|
25
|
+
# @return [String]
|
26
|
+
def inspect
|
27
|
+
"#<#{self.class.name} role=#{role.inspect} content=#{content.inspect}>"
|
23
28
|
end
|
24
29
|
end
|
25
30
|
end
|
data/lib/omniai/version.rb
CHANGED