diff options
-rw-r--r-- | Gemfile.lock | 4 | ||||
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | docker-compose.example.yml | 2 | ||||
-rw-r--r-- | static/gem.rb | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/Gemfile.lock b/Gemfile.lock index 733052a..9ced512 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - nano-bots (0.0.2) + nano-bots (0.0.3) babosa (~> 2.0) dotenv (~> 2.8, >= 2.8.1) faraday (~> 2.7, >= 2.7.4) @@ -48,7 +48,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) rspec-support (3.12.0) - rubocop (1.50.2) + rubocop (1.51.0) json (~> 2.3) parallel (~> 1.10) parser (>= 3.2.0.0) @@ -23,13 +23,13 @@ https://user-images.githubusercontent.com/113217272/237840989-1e29a5cc-6644-48d0 For a system usage: ```sh -gem install nano-bots -v 0.0.2 +gem install nano-bots -v 0.0.3 ``` To use it in a project, add it to your `Gemfile`: ```ruby -gem 'nano-bots', '~> 0.0.2' +gem 'nano-bots', '~> 0.0.3' ``` ```sh @@ -76,7 +76,7 @@ version: '3.7' services: nano-bots: image: ruby:3.2.2-slim-bullseye - command: sh -c "gem install nano-bots -v 0.0.2 && bash" + command: sh -c "gem install nano-bots -v 0.0.3 && bash" environment: OPENAI_API_ADDRESS: https://api.openai.com OPENAI_API_ACCESS_TOKEN: your-token @@ -254,5 +254,5 @@ gem build nano-bots.gemspec gem signin -gem push nano-bots-0.0.2.gem +gem push nano-bots-0.0.3.gem ``` diff --git a/docker-compose.example.yml b/docker-compose.example.yml index f3af38f..dc4b20a 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -3,7 +3,7 @@ version: '3.7' services: nano-bots: image: ruby:3.2.2-slim-bullseye - command: sh -c "gem install nano-bots -v 0.0.2 && bash" + command: sh -c "gem install nano-bots -v 0.0.3 && bash" environment: OPENAI_API_ADDRESS: https://api.openai.com OPENAI_API_ACCESS_TOKEN: your-token diff --git a/static/gem.rb b/static/gem.rb index 7cf61ab..9700468 100644 --- a/static/gem.rb +++ b/static/gem.rb @@ -3,7 +3,7 @@ module NanoBot GEM = { name: 'nano-bots', - version: '0.0.2', + version: '0.0.3', author: 'icebaker', summary: 'Ruby Implementation of Nano Bots: small, AI-powered bots', description: 'Ruby Implementation of Nano Bots: small, AI-powered bots easily shared as a single file, designed to support multiple providers such as Vicuna, OpenAI ChatGPT, Google PaLM, Alpaca, and LLaMA.', |