jambots 0.1.3 → 0.1.4

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: 896cd72a5631564cdab055026f7509d7144b6c6d1021594f9c4724af319934bd
4
- data.tar.gz: e31d99db9c4979377b3cb0f230c0154ed2fe7189f52cf944a3456b3f47f4199b
3
+ metadata.gz: b0e56f51936ffa6d73d5a24632cf6b0daae03274d2ad1f8e6288bfcddc85d45d
4
+ data.tar.gz: 539ba6ee737fc185ef1f681a4125de724a3f9432237d65ffa7065c280c40f4fd
5
5
  SHA512:
6
- metadata.gz: 761b1110514250588932d8019597cd9afababaf69f693b73460cee4530cac256799c71e78c42629a87f719e92e8d4bb213597a94b50b8d7bcaec5590c57a3590
7
- data.tar.gz: 9f77f4cc637bdc9e8b20d8fa906e8a136deef16d21a5db34f81c4b74e0013043e5b44c13645b90bbcb22649aa4254f654c724ec0b1842167890a52d9cebec052
6
+ metadata.gz: fb68e774266dd90ae2e92674841747075a4c9a9807d7cc751e77b318d821f6dc56a7df33bf36fc98586f462670f0cf8b0f31d28d26699ce07e53c4a3cd893a88
7
+ data.tar.gz: 1a65ab5993b6e090c7f87e8b1c20727edd33fb34da5ddc24c8104af0fe416411336019c3309a32f021b63eeab07995c98cac6038a593f7bac17f09fa7573f38b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jambots (0.1.2)
4
+ jambots (0.1.4)
5
5
  pastel (~> 0.8.0)
6
6
  ruby-openai (~> 3.7)
7
7
  thor (~> 1.2.1)
data/README.md CHANGED
@@ -22,6 +22,15 @@ Or install it yourself as:
22
22
  $ gem install jambots
23
23
  ```
24
24
 
25
+ You'll need to create the environment variable OPENAI_API_KEY with the value of your OpenAI API Key.
26
+
27
+ For instance if you use bash:
28
+
29
+ ```
30
+ echo 'export OPENAI_API_KEY="your_openai_api_key"' >> ~/.bashrc
31
+ source ~/.bashrc
32
+ ```
33
+
25
34
  ## Usage
26
35
 
27
36
  ### initialize a jambots path
@@ -40,6 +49,8 @@ This command will generate a Jambots directory with the default bot directory na
40
49
 
41
50
  By default, this command initializes a Jambots directory in the current directory. However, you can use the `--path` or `--globally` options to create it at different paths.
42
51
 
52
+
53
+
43
54
  #### The Jambot path
44
55
 
45
56
  When you execute the subcommands jambots new or jambots chat without the `--path` option, Jambots will check for the existence of the `./.jambots` directory, and if not found, it will check for `~/.jambots.`
@@ -117,7 +128,7 @@ and a party animal. However, he occasionally shows a kinder and more compassiona
117
128
  side. Make sure to respond as if you were Bender in his interactions, using his
118
129
  characteristic tone and style."
119
130
 
120
- Bot 'bender' created './.jambots/blender'
131
+ Bot 'bender' created './.jambots/bender'
121
132
  ```
122
133
 
123
134
  That command will create the bender bot, its directory has the following structure:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Jambots
4
- VERSION = "0.1.3"
4
+ VERSION = "0.1.4"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jambots
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Artero
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-07 00:00:00.000000000 Z
11
+ date: 2023-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-openai