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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a38e5d5707c6c8a0afae10fa5bfae1df4a42cf8695325def6993f7409144f548
4
- data.tar.gz: c61bcf3c4351e13beacbc3744380a34a325739b195bda2a59a8db05fc0c4e784
3
+ metadata.gz: 3d67b89e89e841ab9bdc643976530992131eb83bc4b472fc2420523e1e4eb469
4
+ data.tar.gz: e243f02c680ed9f2623e4895fc6cd4dce51fc313c0e65506ab65c7da3c691185
5
5
  SHA512:
6
- metadata.gz: ac278a0b6931574e8c4ab01bd452f3164bea7cc3bdc5c9779df9e9377281c533bcc91e2e4465a4c6356c77e68479ca7128fed27fb6dfd999a42cf47bfe14893d
7
- data.tar.gz: 46515f61009a051913ff9f9f496be3e20bc82236f8b7badcc1f1e300a8de76aed62822eeaf97906977062675493c3ca8a85a9218cb7d956847ae6886453fadb2
6
+ metadata.gz: a45863631968a5d0bfc7798b18eb3d565dc231fc6f2472fe10fe6e08a545dfca38d574ba27a674841b8f42e03b2eb9e5cc072e3f153c53b1bf5efea4eddcf36e
7
+ data.tar.gz: 0bf2a1cc69a4d82674152f2079cfc9e6c98f10cafeb9865bbc61c3840886cd7b821bf887c8f9f3f8081695b9d58826f29d21955a250819715ab4a2354b55a5bf
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby-openai-swarm (0.1.0)
4
+ ruby-openai-swarm (0.2.2)
5
5
  ruby-openai (~> 7.3)
6
6
 
7
7
  GEM
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: [method(:transfer_to_flight_modification), method(:transfer_to_lost_baggage)]
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: 'tool',
106
- tool_call_id: tool_call.id,
107
- tool_name: name,
108
- content: "Error: Tool #{name} not found."
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: 'tool',
127
- tool_call_id: tool_call['id'],
128
- tool_name: name,
129
- content: result.value
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)
@@ -1,3 +1,3 @@
1
1
  module OpenAISwarm
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.2"
3
3
  end
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.0
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-10-29 00:00:00.000000000 Z
11
+ date: 2024-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-openai