ox-ai-workers 0.5.6 → 0.5.6.1
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 +3 -3
- data/exe/oxaiworkers +3 -2
- data/lib/oxaiworkers/version.rb +1 -1
- metadata +9 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4ac618c0c5d09d4763b8703322a22e072cae34504bb5b352cdc3f3471a1d9b4
|
4
|
+
data.tar.gz: 923f7b531b6bf9e6d4e0f357811d246b25c3325f90a40a033de8ef01560c5d20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81c860c7bd2791b49f6a82bc6b05dfb45c429cfd0e4716d9f7e3d07b1622507f4ec716c59afddc816bd7a7cd488532b36f26368aa51005f4d28346d11163db64
|
7
|
+
data.tar.gz: 7d3838f53d93f618f8e7a0dba87bbeb3fee24cdf6c64bad1cb4190f954ef0092406dfc8d7f4a977d0f9d73dd70ddc839945333764f5a62f171b7e8b9de97b5dd
|
data/README.md
CHANGED
@@ -268,7 +268,7 @@ Alternatively, you can use IRB (Interactive Ruby):
|
|
268
268
|
irb
|
269
269
|
```
|
270
270
|
|
271
|
-
2. In the console, enter the following commands:
|
271
|
+
2. In the console, enter the following commands (see Usage section):
|
272
272
|
|
273
273
|
```ruby
|
274
274
|
require 'ox-ai-workers'
|
@@ -278,13 +278,13 @@ Alternatively, you can use IRB (Interactive Ruby):
|
|
278
278
|
Then set a task:
|
279
279
|
|
280
280
|
```ruby
|
281
|
-
@sysop.task = "Show all cron jobs
|
281
|
+
@sysop.task = "Show all cron jobs"
|
282
282
|
```
|
283
283
|
|
284
284
|
After these steps you can interact with it using the following method:
|
285
285
|
|
286
286
|
```ruby
|
287
|
-
@sysop.add_response("Yes, I want it
|
287
|
+
@sysop.add_response("Yes, I want it")
|
288
288
|
```
|
289
289
|
|
290
290
|
or set a new task.
|
data/exe/oxaiworkers
CHANGED
@@ -2,8 +2,9 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'fileutils'
|
5
|
+
require 'oxaiworkers/version'
|
5
6
|
|
6
|
-
puts
|
7
|
+
puts "Welcome to OxAiWorkers v#{OxAiWorkers::VERSION}"
|
7
8
|
|
8
9
|
if ARGV.first == 'init'
|
9
10
|
dir = '.oxaiworkers-local'
|
@@ -24,7 +25,7 @@ if ARGV.first == 'init'
|
|
24
25
|
elsif ARGV.first == 'run'
|
25
26
|
require 'irb'
|
26
27
|
require 'ox-ai-workers'
|
27
|
-
puts "#{ARGV.last.capitalize}
|
28
|
+
puts "Assistant: #{ARGV.last.capitalize}"
|
28
29
|
instance_variable_set("@#{ARGV.last}", Object.const_get("OxAiWorkers::Assistant::#{ARGV.last.capitalize}").new)
|
29
30
|
ARGV.clear
|
30
31
|
IRB.start
|
data/lib/oxaiworkers/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ox-ai-workers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.6
|
4
|
+
version: 0.5.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Denis Smolev
|
@@ -109,16 +109,14 @@ dependencies:
|
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '1'
|
111
111
|
description: |2
|
112
|
-
OxAiWorkers (ox-ai-workers) is a Ruby gem
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
- Flexibility and Extensibility: Customize the behavior of the state machine and OpenAI integration according to your needs.
|
121
|
-
- Ease of Use: Intuitive syntax and documentation make it easy to get started with the gem.
|
112
|
+
OxAiWorkers (ox-ai-workers) is a cutting-edge Ruby gem designed to seamlessly integrate
|
113
|
+
a sophisticated state machine with the powerful capabilities of generative intelligence
|
114
|
+
via the ruby-openai gem. This innovative tool empowers developers to construct state machines
|
115
|
+
that efficiently handle complex tasks, enhancing outcomes by combining robust internal
|
116
|
+
logic with advanced AI-driven decision-making. Key features include straightforward creation
|
117
|
+
and management of state machines, harnessing AI for improved decision-making and task
|
118
|
+
execution, customizable behavior to suit specific requirements, and user-friendly syntax
|
119
|
+
and documentation for a smooth development experience.
|
122
120
|
email:
|
123
121
|
- smolev@me.com
|
124
122
|
executables:
|