baran 0.1.0 → 0.1.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: d2d2cc921acca7ce1f9462f118d7c6f3ea8933f450b739291ae8c6d10f0148e0
4
- data.tar.gz: c1a2ce276c1146d1e6d2fd1540fd50591335bd2daf698d38eb13c32055df6a2e
3
+ metadata.gz: 1ba68ca754f6d94e7d9fa28970f025ecfb24f884bcfa80016949fb642b8eec2d
4
+ data.tar.gz: 63a03a1f15ae69be0c056677357c954980abdfb888b63bb19e0c581cff65b4a9
5
5
  SHA512:
6
- metadata.gz: ce4b6febc196836d00ac3520a44f31252ae9f59900a962e1763e26427952776099afa88b19ba04fee87f377eb24a16670ba6054e53808333e67a09019bb2fa7f
7
- data.tar.gz: 36c094c54f0c45efd16781b69f02f0230e9281a1eff737fe3251d065e1d4f4b1b4e8b48e6c72e038f2065b4b5bf1b259c13099fcb5484e486a98b0a7bfc03203
6
+ metadata.gz: 7909200392f0b439666a0758875147f3fd4f5da55958e42a9db822ca9ef9b518d83d22d47d03609be68972a7e5bfbeaf500a845ac1ca4567513b1a11189bc8b4
7
+ data.tar.gz: e2371e892418e0eddcf09bc4a06b68299c207869ed1313a1150dc4e4341d9bb2feb80ef1a9c0831126a2f59b84b4dcd3c1fdf1df16d500efd485e52c7d5eebf9
data/CHANGELOG.md CHANGED
@@ -3,3 +3,12 @@
3
3
  ## [0.1.0] - 2023-05-28
4
4
 
5
5
  - Initial release
6
+
7
+ ## [0.1.1] - 2023-05-28
8
+
9
+ - Update README
10
+
11
+
12
+ ## [0.1.2] - 2023-05-28
13
+
14
+ - Fix README
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- baran (0.1.0)
4
+ baran (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Text Splitter for Large Language Model datasets.
4
4
 
5
+ To avoid token constraints and improve the accuracy of vector search in the Large Language Model, it is necessary to divide the document. This gem supports splitting the text in the specified manner.
6
+
5
7
  ## Installation
6
8
 
7
9
  Install the gem and add to the application's Gemfile by executing:
@@ -75,9 +77,7 @@ Split with the following priority.
75
77
 
76
78
  ## Development
77
79
 
78
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
79
-
80
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
80
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `bundle exec rake` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
81
81
 
82
82
  ## Contributing
83
83
 
data/lib/baran/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Baran
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: baran
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moeki Kawakami