tiktoken_ruby 0.0.4-x86_64-linux → 0.0.5-x86_64-linux

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: 3094946d0ce4e358c99e6de95455b132135a7d286e6bbe24fcf21f1e5ceea867
4
- data.tar.gz: a66c81531ddf86d99c0b9f2bd993c0dfe5a00538d034c2c0648d84a1526f0d14
3
+ metadata.gz: de1087cafb5ceab1a189ca5d2d1ce198a1817beb28c24143e0fb158223483ee6
4
+ data.tar.gz: d8f01d86b0c4e400a2c04c78da35d31c45bb13296c40e4b713264bf1db8c7893
5
5
  SHA512:
6
- metadata.gz: e1196d2e5bdff73ced49a4b7d9c8c88621cb93c8e598ab37ba2271a2e4d7e4fccae209fd8a04beb19c9f5c4306815b419ca2b41da31974f65809d8b02c38b2b5
7
- data.tar.gz: 24a4ca1948419483d29b1c22b704d4cd3133e0398acba412efc3f1b03127d4c6bdf1a4fae2f22bf59aa2d6175d36825ae213909380c848d790cc894a6aaeccb9
6
+ metadata.gz: 05e1fd69a7c77329c15b30dabd4639096c4d7baf720769c2a82e97a5fe633da4484d2be20b47ae81e8a6d3b533c564005eb2b9ddc7b9d91dd239d69f1ee36290
7
+ data.tar.gz: f54a73132e3a7e1d7b983dad5b3ba1d28e59adf9ca08741b812c2c2b6f94942075bdac02c3f05771354b544d28136592d320bf0a200a853e180a2c52c4791e88
data/Gemfile CHANGED
@@ -8,7 +8,6 @@ gemspec
8
8
  gem "rake", "~> 13.0"
9
9
 
10
10
  gem "rake-compiler"
11
- gem "rb_sys"
12
11
 
13
12
  gem "rspec", "~> 3.0"
14
13
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tiktoken_ruby (0.0.4)
4
+ tiktoken_ruby (0.0.5)
5
+ rb_sys (~> 0.9.68)
5
6
 
6
7
  GEM
7
8
  remote: https://rubygems.org/
@@ -64,13 +65,13 @@ GEM
64
65
 
65
66
  PLATFORMS
66
67
  arm64-darwin-22
68
+ ruby
67
69
  x86_64-darwin-22
68
70
  x86_64-linux
69
71
 
70
72
  DEPENDENCIES
71
73
  rake (~> 13.0)
72
74
  rake-compiler
73
- rb_sys
74
75
  rspec (~> 3.0)
75
76
  standard (~> 1.3)
76
77
  tiktoken_ruby!
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tiktoken
4
- VERSION = "0.0.4"
4
+ VERSION = "0.0.5"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiktoken_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - IAPark
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-28 00:00:00.000000000 Z
11
+ date: 2023-05-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: An unofficial Ruby wrapper for Tiktoken, a BPE tokenizer written by and
14
14
  used by OpenAI. It can be used to count the number of tokens in text before sending
@@ -28,7 +28,6 @@ files:
28
28
  - Rakefile
29
29
  - doctest_helper.rb
30
30
  - lib/tiktoken_ruby.rb
31
- - lib/tiktoken_ruby/2.7/tiktoken_ruby.so
32
31
  - lib/tiktoken_ruby/3.0/tiktoken_ruby.so
33
32
  - lib/tiktoken_ruby/3.1/tiktoken_ruby.so
34
33
  - lib/tiktoken_ruby/3.2/tiktoken_ruby.so
@@ -50,7 +49,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
50
49
  requirements:
51
50
  - - ">="
52
51
  - !ruby/object:Gem::Version
53
- version: '2.7'
52
+ version: '3.0'
54
53
  - - "<"
55
54
  - !ruby/object:Gem::Version
56
55
  version: 3.3.dev
Binary file