gpt4all 0.0.1 → 0.0.2

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: f611f3c03de174c0bbc7ff1cf009569c8f2b4405cb4cead51fdafc367559fcd9
4
- data.tar.gz: 376a1e7c1100b5368d4fd6a00ad7226c7b9def1510aae6fb7af2b3629d3fe860
3
+ metadata.gz: 73096360c4f9175928af641a06e4b137191afae53438bbbe9ef4b095463053e5
4
+ data.tar.gz: e79c2ea669da611104cd7c1890e7b5ba1b0c0baa7dca90ca6fa149158ad1910a
5
5
  SHA512:
6
- metadata.gz: 8be39a0889515dd33171fb73db9905edde1f8f68872b389268ec19a3352761202a3da2f524d3a18a777d8f5b032f151ed9e62656655d736e83ad4bce357f2a17
7
- data.tar.gz: 03e6ea52397c7426081333ec3b36f4d274e2df259f55afdd2eea0dc376f1df7ae7e1781afd03a58223a88ea8c8c35156fed5e5b37bbe5d328cf35eeb7ae4e571
6
+ metadata.gz: 923387d8c54178edb2a3538ea05ee591034458c1af9fb4534fa28219f6f6723a3f4418bcd2b9345157fbb3b4435a01c7832eb305f0378ca39964caf724bc0508
7
+ data.tar.gz: dd98dbf6c1275c34f2e844bce810a0ae4f7bccecc0ab686a827da43627fe4f54dc2ccef2990c6945196561331589fb3fc576fdc36bf6cb98d7ae3b5f88091e76
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
- ## [0.1.0] - 2023-04-07
9
+ ## [0.0.1] - 2023-04-07
10
10
 
11
11
  - Initial release
12
+
13
+ ## [0.0.2] - 2023-04-07
14
+
15
+ - updated changelog link
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gpt4all (0.0.1)
4
+ gpt4all (0.0.2)
5
5
  faraday (~> 2.7)
6
6
  os (~> 1.1)
7
7
  tty-progressbar (~> 0.18.2)
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Gpt4all
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/gpt4all.svg)](https://badge.fury.io/rb/gpt4all)
4
+ [![CI](https://github.com/jaigouk/gpt4all/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/jaigouk/gpt4all/actions/workflows/main.yml)
5
+
3
6
  Gpt4all is a Ruby gem that provides an easy-to-use interface for interacting with the GPT-4 conversational AI model.
4
7
 
5
8
  ## Installation
data/gpt4all.gemspec CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
 
19
19
  spec.metadata['homepage_uri'] = spec.homepage
20
20
  spec.metadata['source_code_uri'] = 'https://github.com/jaigouk/gpt4all'
21
- spec.metadata['changelog_uri'] = 'https://github.com/jaigouk/gpt4all/CHANGELOG.md'
21
+ spec.metadata['changelog_uri'] = 'https://github.com/jaigouk/gpt4all/blob/main/CHANGELOG.md'
22
22
 
23
23
  # Specify which files should be added to the gem when it is released.
24
24
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gpt4all
4
- VERSION = '0.0.1'
4
+ VERSION = '0.0.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gpt4all
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jaigouk Kim
@@ -79,7 +79,7 @@ metadata:
79
79
  allowed_push_host: https://rubygems.org
80
80
  homepage_uri: https://github.com/jaigouk/gpt4all
81
81
  source_code_uri: https://github.com/jaigouk/gpt4all
82
- changelog_uri: https://github.com/jaigouk/gpt4all/CHANGELOG.md
82
+ changelog_uri: https://github.com/jaigouk/gpt4all/blob/main/CHANGELOG.md
83
83
  rubygems_mfa_required: 'true'
84
84
  post_install_message:
85
85
  rdoc_options: []