diff options
author | icebaker <icebaker@proton.me> | 2023-12-09 22:09:12 -0300 |
---|---|---|
committer | icebaker <icebaker@proton.me> | 2023-12-09 22:09:12 -0300 |
commit | fb96658a1ca4b6e3e0505e7a39f660e1a05b3c6e (patch) | |
tree | 571f74f005a7d8aab55b17cc79f6cc31c8dffd8e | |
parent | 385f6ea128b19e295d231acd62786c8b466054dd (diff) |
bump to 1.1.2
-rw-r--r-- | Gemfile.lock | 2 | ||||
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | docker-compose.example.yml | 2 | ||||
-rw-r--r-- | static/gem.rb | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/Gemfile.lock b/Gemfile.lock index 9a99f46..94c465a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - nano-bots (1.1.1) + nano-bots (1.1.2) babosa (~> 2.0) concurrent-ruby (~> 1.2, >= 1.2.2) dotenv (~> 2.8, >= 2.8.1) @@ -30,13 +30,13 @@ https://user-images.githubusercontent.com/113217272/238141567-c58a240c-7b67-4b3b For a system usage: ```sh -gem install nano-bots -v 1.1.1 +gem install nano-bots -v 1.1.2 ``` To use it in a project, add it to your `Gemfile`: ```ruby -gem 'nano-bots', '~> 1.1.1' +gem 'nano-bots', '~> 1.1.2' ``` ```sh @@ -86,7 +86,7 @@ Set your provider credentials and choose your desired directory for the cartridg services: nano-bots: image: ruby:3.2.2-slim-bookworm - command: sh -c "apt-get update && apt-get install -y --no-install-recommends build-essential libffi-dev libsodium-dev lua5.4-dev curl && curl -s https://raw.githubusercontent.com/babashka/babashka/master/install | bash && gem install nano-bots -v 1.1.1 && bash" + command: sh -c "apt-get update && apt-get install -y --no-install-recommends build-essential libffi-dev libsodium-dev lua5.4-dev curl && curl -s https://raw.githubusercontent.com/babashka/babashka/master/install | bash && gem install nano-bots -v 1.1.2 && bash" environment: OPENAI_API_ADDRESS: https://api.openai.com OPENAI_API_KEY: your-access-token @@ -492,5 +492,5 @@ gem build nano-bots.gemspec gem signin -gem push nano-bots-1.1.1.gem +gem push nano-bots-1.1.2.gem ``` diff --git a/docker-compose.example.yml b/docker-compose.example.yml index 885d35a..2a6911d 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -2,7 +2,7 @@ services: nano-bots: image: ruby:3.2.2-slim-bookworm - command: sh -c "apt-get update && apt-get install -y --no-install-recommends build-essential libffi-dev libsodium-dev lua5.4-dev curl && curl -s https://raw.githubusercontent.com/babashka/babashka/master/install | bash && gem install nano-bots -v 1.1.1 && bash" + command: sh -c "apt-get update && apt-get install -y --no-install-recommends build-essential libffi-dev libsodium-dev lua5.4-dev curl && curl -s https://raw.githubusercontent.com/babashka/babashka/master/install | bash && gem install nano-bots -v 1.1.2 && bash" environment: OPENAI_API_ADDRESS: https://api.openai.com OPENAI_API_KEY: your-access-token diff --git a/static/gem.rb b/static/gem.rb index 3959eda..bd2218b 100644 --- a/static/gem.rb +++ b/static/gem.rb @@ -3,7 +3,7 @@ module NanoBot GEM = { name: 'nano-bots', - version: '1.1.1', + version: '1.1.2', 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.', |