ruby-openai-swarm 0.2.0 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +4 -0
- data/examples/airline/configs/agents.rb +3 -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
data/README.md
CHANGED
@@ -18,6 +18,10 @@ A Ruby-based educational framework adapted from OpenAI’s [Swarm](https://githu
|
|
18
18
|
- [examples](#examples)
|
19
19
|
- [Documentation](#documentation)
|
20
20
|
|
21
|
+
## quick show
|
22
|
+
https://github.com/user-attachments/assets/ed84ef83-5ccb-4223-abb8-933d0ec66468
|
23
|
+
|
24
|
+
|
21
25
|
## Installation
|
22
26
|
|
23
27
|
### Bundler
|
@@ -47,7 +47,9 @@ def triage_agent
|
|
47
47
|
model: "gpt-4o-mini",
|
48
48
|
name: "Triage Agent",
|
49
49
|
instructions: method(:triage_instructions),
|
50
|
-
functions: [
|
50
|
+
functions: [
|
51
|
+
method(:transfer_to_flight_modification),
|
52
|
+
method(:transfer_to_lost_baggage)]
|
51
53
|
)
|
52
54
|
end
|
53
55
|
|
@@ -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
|
+
date: 2024-11-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-openai
|