jambots 0.1.2 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -3
- data/Gemfile.lock +1 -1
- data/README.md +12 -1
- data/lib/jambots/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0e56f51936ffa6d73d5a24632cf6b0daae03274d2ad1f8e6288bfcddc85d45d
|
4
|
+
data.tar.gz: 539ba6ee737fc185ef1f681a4125de724a3f9432237d65ffa7065c280c40f4fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb68e774266dd90ae2e92674841747075a4c9a9807d7cc751e77b318d821f6dc56a7df33bf36fc98586f462670f0cf8b0f31d28d26699ce07e53c4a3cd893a88
|
7
|
+
data.tar.gz: 1a65ab5993b6e090c7f87e8b1c20727edd33fb34da5ddc24c8104af0fe416411336019c3309a32f021b63eeab07995c98cac6038a593f7bac17f09fa7573f38b
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
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/
|
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:
|
data/lib/jambots/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2023-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-openai
|
@@ -126,11 +126,11 @@ files:
|
|
126
126
|
- lib/jambots/renderer.rb
|
127
127
|
- lib/jambots/version.rb
|
128
128
|
- sig/jambots.rbs
|
129
|
-
homepage: https://
|
129
|
+
homepage: https://github.com/artero/jambots
|
130
130
|
licenses:
|
131
131
|
- MIT
|
132
132
|
metadata:
|
133
|
-
homepage_uri: https://
|
133
|
+
homepage_uri: https://github.com/artero/jambots
|
134
134
|
source_code_uri: https://github.com/artero/jambots
|
135
135
|
changelog_uri: https://github.com/artero/jambots/blob/main/CHANGELOG.md
|
136
136
|
post_install_message:
|