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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abb7610ad84b6ad347b552603ebf36dc57402acdb9d0e66b729bf19df48c398b
4
- data.tar.gz: 0daa4f786dcd4f1244f897a8ae3617e5a83f65026750ed5abf7aec44923b83bb
3
+ metadata.gz: b0e56f51936ffa6d73d5a24632cf6b0daae03274d2ad1f8e6288bfcddc85d45d
4
+ data.tar.gz: 539ba6ee737fc185ef1f681a4125de724a3f9432237d65ffa7065c280c40f4fd
5
5
  SHA512:
6
- metadata.gz: deadf43c0434d0c2168eac21d52954b58b377adf004373c264a858ee3e5ae2cf6466d8a288f1b602328aa17a4248e3ec6f48738cf94b0a7f5a3c57b1d0a7527c
7
- data.tar.gz: d83755324d4f2261c34bc98d7ef14bd40455be7dc2ed2bb7f4205d758e39eea4b33f7ea76650d120ea5cc8c33f63f449adc86ef02cc6b8ebaf142972a7389440
6
+ metadata.gz: fb68e774266dd90ae2e92674841747075a4c9a9807d7cc751e77b318d821f6dc56a7df33bf36fc98586f462670f0cf8b0f31d28d26699ce07e53c4a3cd893a88
7
+ data.tar.gz: 1a65ab5993b6e090c7f87e8b1c20727edd33fb34da5ddc24c8104af0fe416411336019c3309a32f021b63eeab07995c98cac6038a593f7bac17f09fa7573f38b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,3 @@
1
- ## [Unreleased]
2
-
3
- ## [0.1.0] - 2023-03-16
1
+ ## [0.1.3] - 2023-05-07
4
2
 
5
3
  - Initial release
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.2"
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.2
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
@@ -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://juanartero.com
129
+ homepage: https://github.com/artero/jambots
130
130
  licenses:
131
131
  - MIT
132
132
  metadata:
133
- homepage_uri: https://juanartero.com
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: