tiktoken_ruby 0.0.3-arm64-darwin → 0.0.5-arm64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +0 -2
- data/Gemfile.lock +4 -8
- data/README.md +12 -1
- data/Rakefile +0 -1
- data/doctest_helper.rb +1 -1
- data/lib/tiktoken_ruby/3.0/tiktoken_ruby.bundle +0 -0
- data/lib/tiktoken_ruby/3.1/tiktoken_ruby.bundle +0 -0
- data/lib/tiktoken_ruby/3.2/tiktoken_ruby.bundle +0 -0
- data/lib/tiktoken_ruby/encoding.rb +48 -47
- data/lib/tiktoken_ruby/version.rb +1 -1
- data/lib/tiktoken_ruby.rb +8 -9
- metadata +3 -4
- data/lib/tiktoken_ruby/2.7/tiktoken_ruby.bundle +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81dc76718ba9f4430102a351d8b21ece4488cc6291b649deb2f28f39dd05a3f8
|
4
|
+
data.tar.gz: f0ee3c259984fc005e1eefe0b18c5b232389b1f3c60b347df07ca9d3aff32266
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7816b189b65e9696d7b2bed067b40962c878c93a58713826fc2f303f2f6852db70b0bbf9fd9fb1e949da5cc027e89719607d269fa7c11ac1ae021c6714c87e96
|
7
|
+
data.tar.gz: c8b13240a540f842f11ccedd1c8a7fd93c64b37e08c1431f9a5845366277d5409f8cda1775bbfb05a19fbe4aef50bd307d4842360338d41cca6db2aa2292bf6a
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,24 +1,20 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
tiktoken_ruby (0.0.
|
4
|
+
tiktoken_ruby (0.0.5)
|
5
|
+
rb_sys (~> 0.9.68)
|
5
6
|
|
6
7
|
GEM
|
7
8
|
remote: https://rubygems.org/
|
8
9
|
specs:
|
9
10
|
ast (2.4.2)
|
10
|
-
coderay (1.1.3)
|
11
11
|
diff-lcs (1.5.0)
|
12
12
|
json (2.6.3)
|
13
13
|
language_server-protocol (3.17.0.3)
|
14
|
-
method_source (1.0.0)
|
15
14
|
minitest (5.18.0)
|
16
15
|
parallel (1.22.1)
|
17
16
|
parser (3.2.1.1)
|
18
17
|
ast (~> 2.4.1)
|
19
|
-
pry (0.14.2)
|
20
|
-
coderay (~> 1.1)
|
21
|
-
method_source (~> 1.0)
|
22
18
|
rainbow (3.1.1)
|
23
19
|
rake (13.0.6)
|
24
20
|
rake-compiler (1.2.1)
|
@@ -69,13 +65,13 @@ GEM
|
|
69
65
|
|
70
66
|
PLATFORMS
|
71
67
|
arm64-darwin-22
|
68
|
+
ruby
|
69
|
+
x86_64-darwin-22
|
72
70
|
x86_64-linux
|
73
71
|
|
74
72
|
DEPENDENCIES
|
75
|
-
pry (~> 0.14.2)
|
76
73
|
rake (~> 13.0)
|
77
74
|
rake-compiler
|
78
|
-
rb_sys
|
79
75
|
rspec (~> 3.0)
|
80
76
|
standard (~> 1.3)
|
81
77
|
tiktoken_ruby!
|
data/README.md
CHANGED
@@ -15,7 +15,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
15
15
|
$ gem install tiktoken_ruby
|
16
16
|
|
17
17
|
## Usage
|
18
|
-
Usage should be very similar to the python library.
|
18
|
+
Usage should be very similar to the python library. Here's a simple example
|
19
19
|
|
20
20
|
Encode and decode text
|
21
21
|
```ruby
|
@@ -43,6 +43,17 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
43
43
|
|
44
44
|
Bug reports and pull requests are welcome on GitHub at https://github.com/iapark/tiktoken_ruby.
|
45
45
|
|
46
|
+
To get started with development:
|
47
|
+
|
48
|
+
```sh
|
49
|
+
git clone https://github.com/IAPark/tiktoken_ruby.git
|
50
|
+
cd tiktoken_ruby
|
51
|
+
bundle install
|
52
|
+
bundle exec rake compile
|
53
|
+
bundle exec rake spec
|
54
|
+
```
|
55
|
+
|
56
|
+
|
46
57
|
## License
|
47
58
|
|
48
59
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
CHANGED
data/doctest_helper.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
require
|
1
|
+
require "lib/tiktoken_ruby"
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,51 +1,52 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
class Tiktoken::Encoding
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
4
|
+
attr_reader :name
|
5
|
+
|
6
|
+
# This returns a new Tiktoken::Encoding instance for the requested encoding
|
7
|
+
# @param encoding [Symbol] The name of the encoding to load
|
8
|
+
# @return [Tiktoken::Encoding] The encoding instance
|
9
|
+
def self.for_name(encoding)
|
10
|
+
Tiktoken::Encoding.new(Tiktoken::BpeFactory.send(encoding.to_sym), encoding.to_sym)
|
11
|
+
end
|
12
|
+
|
13
|
+
# This returns a Tiktoken::Encoding instance for the requested encoding
|
14
|
+
# It will reuse an existing encoding if it's already been loaded
|
15
|
+
# @param encoding [Symbol] The name of the encoding to load
|
16
|
+
# @return [Tiktoken::Encoding] The encoding instance
|
17
|
+
def self.for_name_cached(encoding)
|
18
|
+
@encodings ||= {}
|
19
|
+
@encodings[encoding.to_sym] ||= Tiktoken::Encoding.for_name(encoding)
|
20
|
+
end
|
21
|
+
|
22
|
+
# Encodes the text as a list of integer tokens. This encoding will encode special non text tokens
|
23
|
+
# basically it's unescaped
|
24
|
+
# @param text [String] The text to encode
|
25
|
+
# @return [Array<Integer>] The encoded tokens
|
26
|
+
def encode_ordinary(text)
|
27
|
+
@ext_base_bpe.encode_ordinary(text)
|
28
|
+
end
|
29
|
+
|
30
|
+
# Encodes the text as a list of integer tokens. This encoding will treat special non text tokens
|
31
|
+
# as text unless they're in the allowed_special array. It's basically like the text was escaped
|
32
|
+
# @param text [String] The text to encode
|
33
|
+
# @param allowed_special [Array<String>] An array of special tokens to allow
|
34
|
+
# @return [Array<Integer>] The encoded tokens
|
35
|
+
def encode(text, allowed_special: [])
|
36
|
+
@ext_base_bpe.encode(text, allowed_special)
|
37
|
+
end
|
38
|
+
|
39
|
+
# Decodes the tokens back into text
|
40
|
+
# @param tokens [Array<Integer>] The tokens to decode
|
41
|
+
# @return [String] The decoded text
|
42
|
+
def decode(tokens)
|
43
|
+
@ext_base_bpe.decode(tokens)
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def initialize(ext_base_bpe, name)
|
49
|
+
@ext_base_bpe = ext_base_bpe
|
50
|
+
@name = name
|
51
|
+
end
|
51
52
|
end
|
data/lib/tiktoken_ruby.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require_relative "tiktoken_ruby/version"
|
4
|
-
require_relative "tiktoken_ruby/encoding
|
4
|
+
require_relative "tiktoken_ruby/encoding"
|
5
5
|
|
6
6
|
begin
|
7
7
|
RUBY_VERSION =~ /(\d+\.\d+)/
|
@@ -12,7 +12,6 @@ end
|
|
12
12
|
|
13
13
|
module Tiktoken
|
14
14
|
class << self
|
15
|
-
|
16
15
|
# Returns an encoding by name. If the encoding is not already loaded it will be loaded, but otherwise
|
17
16
|
# it will reuse the instance of that type that was previous loaded
|
18
17
|
# @param name [Symbol|String] The name of the encoding to load
|
@@ -34,7 +33,7 @@ module Tiktoken
|
|
34
33
|
# enc = Tiktoken.encoding_for_model("gpt-4")
|
35
34
|
# enc.encode("hello world").length #=> 2
|
36
35
|
def encoding_for_model(model_name)
|
37
|
-
|
36
|
+
PREFIX_MODELS.each do |prefix|
|
38
37
|
if model_name.to_s.start_with?("#{prefix}-")
|
39
38
|
model_name = prefix
|
40
39
|
break
|
@@ -65,7 +64,7 @@ module Tiktoken
|
|
65
64
|
:r50k_base,
|
66
65
|
:p50k_base,
|
67
66
|
:p50k_edit,
|
68
|
-
:cl100k_base
|
67
|
+
:cl100k_base
|
69
68
|
]
|
70
69
|
|
71
70
|
# taken from the python library here https://github.com/openai/tiktoken/blob/main/tiktoken/model.py#L13-L53
|
@@ -80,10 +79,10 @@ module Tiktoken
|
|
80
79
|
"text-curie-001": "r50k_base",
|
81
80
|
"text-babbage-001": "r50k_base",
|
82
81
|
"text-ada-001": "r50k_base",
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
82
|
+
davinci: "r50k_base",
|
83
|
+
curie: "r50k_base",
|
84
|
+
babbage: "r50k_base",
|
85
|
+
ada: "r50k_base",
|
87
86
|
# code
|
88
87
|
"code-davinci-002": "p50k_base",
|
89
88
|
"code-davinci-001": "p50k_base",
|
@@ -106,7 +105,7 @@ module Tiktoken
|
|
106
105
|
"text-search-babbage-doc-001": "r50k_base",
|
107
106
|
"text-search-ada-doc-001": "r50k_base",
|
108
107
|
"code-search-babbage-code-001": "r50k_base",
|
109
|
-
"code-search-ada-code-001": "r50k_base"
|
108
|
+
"code-search-ada-code-001": "r50k_base"
|
110
109
|
}
|
111
110
|
|
112
111
|
# these are models that have a versioned models that are otherwise identical
|
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
|
+
version: 0.0.5
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- IAPark
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
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.bundle
|
32
31
|
- lib/tiktoken_ruby/3.0/tiktoken_ruby.bundle
|
33
32
|
- lib/tiktoken_ruby/3.1/tiktoken_ruby.bundle
|
34
33
|
- lib/tiktoken_ruby/3.2/tiktoken_ruby.bundle
|
@@ -50,7 +49,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
49
|
requirements:
|
51
50
|
- - ">="
|
52
51
|
- !ruby/object:Gem::Version
|
53
|
-
version: '
|
52
|
+
version: '3.0'
|
54
53
|
- - "<"
|
55
54
|
- !ruby/object:Gem::Version
|
56
55
|
version: 3.3.dev
|
Binary file
|