1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# frozen_string_literal: true
module NanoBot
GEM = {
name: 'nano-bots',
version: '1.0.0',
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.',
github: 'https://github.com/icebaker/ruby-nano-bots',
gem_server: 'https://rubygems.org',
license: 'MIT',
ruby: '3.1.4'
}.freeze
end
|