ruby-openai-swarm 0.2.1 → 0.2.2
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.lock +1 -1
- data/lib/ruby-openai-swarm/core.rb +8 -8
- data/lib/ruby-openai-swarm/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: 3d67b89e89e841ab9bdc643976530992131eb83bc4b472fc2420523e1e4eb469
|
|
4
|
+
data.tar.gz: e243f02c680ed9f2623e4895fc6cd4dce51fc313c0e65506ab65c7da3c691185
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a45863631968a5d0bfc7798b18eb3d565dc231fc6f2472fe10fe6e08a545dfca38d574ba27a674841b8f42e03b2eb9e5cc072e3f153c53b1bf5efea4eddcf36e
|
|
7
|
+
data.tar.gz: 0bf2a1cc69a4d82674152f2079cfc9e6c98f10cafeb9865bbc61c3840886cd7b821bf887c8f9f3f8081695b9d58826f29d21955a250819715ab4a2354b55a5bf
|
data/Gemfile.lock
CHANGED
|
@@ -102,10 +102,10 @@ module OpenAISwarm
|
|
|
102
102
|
unless function_map.key?(name)
|
|
103
103
|
Util.debug_print(debug, "Tool #{name} not found in function map.")
|
|
104
104
|
partial_response.messages << {
|
|
105
|
-
role
|
|
106
|
-
tool_call_id
|
|
107
|
-
tool_name
|
|
108
|
-
content
|
|
105
|
+
'role' => 'tool',
|
|
106
|
+
'tool_call_id' => tool_call['id'],
|
|
107
|
+
'tool_name' => name,
|
|
108
|
+
'content' => "Error: Tool #{name} not found."
|
|
109
109
|
}
|
|
110
110
|
next
|
|
111
111
|
end
|
|
@@ -123,10 +123,10 @@ module OpenAISwarm
|
|
|
123
123
|
result = handle_function_result(raw_result, debug)
|
|
124
124
|
|
|
125
125
|
partial_response.messages << {
|
|
126
|
-
role
|
|
127
|
-
tool_call_id
|
|
128
|
-
tool_name
|
|
129
|
-
content
|
|
126
|
+
'role' => 'tool',
|
|
127
|
+
'tool_call_id' => tool_call['id'],
|
|
128
|
+
'tool_name' => name,
|
|
129
|
+
'content' => result.value
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
partial_response.context_variables.merge!(result.context_variables)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-openai-swarm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Grayson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-11-
|
|
11
|
+
date: 2024-11-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruby-openai
|