tiktoken_ruby 0.0.8-arm64-darwin → 0.0.10-arm64-darwin

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: 2e8099b11c2d6bed54d1eecdb44e1418e712a1ae5d83a42f843d9e4ff30bf210
4
- data.tar.gz: 1ebab400772e48637f61a277b3568aacf1e3a74fcd733e1ffdbdeba4cd5f8302
3
+ metadata.gz: bdcfa8b6fadd98123fdb70a9beb247d213eaf64547a56c24d9c8ca3b64a58ead
4
+ data.tar.gz: 4c4b5878695431e1a691d6c30a910ccb382eb7258916b3db7dce19b45d17cc56
5
5
  SHA512:
6
- metadata.gz: 4e47f06dbbd39dbffaea917a0f2734185a493c099e8dd47368c97d5fdabc206fd49ffee2f7c897917ca36f2426dc1f7fa2e7af3ad0e9aebc4840610eef9762f9
7
- data.tar.gz: 034af2c7975ab6e4d055f0f41365547857b53e8cc9e3fef1cad6f1c6fda6a1a768d98f966163e88961e625e4272efc9982f15980cd29b2ffda9bb612ba4246b2
6
+ metadata.gz: fa9daabc04f8a28e52d02f692ddd32f8440960c620767dc866badc43ffad0a096ebf2e532acf1e5653206d6b4fecfe59cc506ca7a13e12a1526d81a881462c32
7
+ data.tar.gz: eb88b5ddfc09a1a618a9707bebeaa22a723de85cf2951742606b2eb0bcc5bbbc22a45f3a9dcce8a90dea4a9f9d934d65c35525e5cb95c5bb1e565363fa11590d
@@ -0,0 +1,5 @@
1
+ {
2
+ "[ruby]": {
3
+ "editor.defaultFormatter": "Shopify.ruby-lsp"
4
+ }
5
+ }
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tiktoken_ruby (0.0.8)
5
- rb_sys (= 0.9.87)
4
+ tiktoken_ruby (0.0.10)
5
+ rb_sys (>= 0.9.87)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -22,7 +22,7 @@ GEM
22
22
  rake (13.1.0)
23
23
  rake-compiler (1.2.5)
24
24
  rake
25
- rb_sys (0.9.87)
25
+ rb_sys (0.9.105)
26
26
  regexp_parser (2.9.0)
27
27
  rexml (3.2.6)
28
28
  rspec (3.12.0)
@@ -89,4 +89,4 @@ DEPENDENCIES
89
89
  yard-doctest
90
90
 
91
91
  BUNDLED WITH
92
- 2.4.4
92
+ 2.5.18
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tiktoken
4
- VERSION = "0.0.8"
4
+ VERSION = "0.0.10"
5
5
  end
data/lib/tiktoken_ruby.rb CHANGED
@@ -64,13 +64,15 @@ module Tiktoken
64
64
  :r50k_base,
65
65
  :p50k_base,
66
66
  :p50k_edit,
67
- :cl100k_base
67
+ :cl100k_base,
68
+ :o200k_base
68
69
  ]
69
70
 
70
71
  # taken from the python library here https://github.com/openai/tiktoken/blob/main/tiktoken/model.py
71
72
  # that is also MIT licensed but by OpenAI
72
73
  MODEL_TO_ENCODING_NAME = {
73
74
  # chat
75
+ "gpt-4o": "o200k_base",
74
76
  "gpt-4": "cl100k_base",
75
77
  "gpt-3.5-turbo": "cl100k_base",
76
78
  "gpt-35-turbo": "cl100k_base", # Azure deployment name
@@ -120,6 +122,7 @@ module Tiktoken
120
122
 
121
123
  MODEL_PREFIX_TO_ENCODING = {
122
124
  # chat
125
+ "gpt-4o-": "o200k_base", # e.g., gpt-4o-2024-05-13, etc.
123
126
  "gpt-4-": "cl100k_base", # e.g., gpt-4-0314, etc., plus gpt-4-32k
124
127
  "gpt-3.5-turbo-": "cl100k_base", # e.g, gpt-3.5-turbo-0301, -0401, etc.
125
128
  "gpt-35-turbo-": "cl100k_base", # Azure deployment name
data/script/release ADDED
@@ -0,0 +1,26 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ if [ -z "${TIKTOKEN_PUBLISH_KEY}" ]; then
6
+ echo "Error: TIKTOKEN_PUBLISH_KEY is not set. This is the RubyGems API key to push the gem."
7
+ exit 1
8
+ fi
9
+
10
+ targets=(
11
+ "arm64-darwin"
12
+ "x86_64-darwin"
13
+ "aarch64-linux"
14
+ "x86_64-linux"
15
+ "x86_64-linux-musl"
16
+ "arm-linux"
17
+ "x64-mingw-ucrt"
18
+ )
19
+
20
+ for target in "${targets[@]}"; do
21
+ bundle exec rb-sys-dock -p "$target" --ruby-versions 3.2 --build
22
+ done
23
+
24
+ for gem in pkg/tiktoken_ruby*.gem ; do
25
+ GEM_HOST_API_KEY="${TIKTOKEN_PUBLISH_KEY}" gem push "$gem" --host https://rubygems.org
26
+ done
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.8
4
+ version: 0.0.10
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - IAPark
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-04 00:00:00.000000000 Z
11
+ date: 2024-12-29 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
@@ -21,6 +21,7 @@ extra_rdoc_files: []
21
21
  files:
22
22
  - ".rspec"
23
23
  - ".standard.yml"
24
+ - ".vscode/settings.json"
24
25
  - Gemfile
25
26
  - Gemfile.lock
26
27
  - LICENSE.txt
@@ -28,11 +29,10 @@ files:
28
29
  - Rakefile
29
30
  - doctest_helper.rb
30
31
  - lib/tiktoken_ruby.rb
31
- - lib/tiktoken_ruby/3.1/tiktoken_ruby.bundle
32
- - lib/tiktoken_ruby/3.2/tiktoken_ruby.bundle
33
- - lib/tiktoken_ruby/3.3/tiktoken_ruby.bundle
34
32
  - lib/tiktoken_ruby/encoding.rb
33
+ - lib/tiktoken_ruby/tiktoken_ruby.bundle
35
34
  - lib/tiktoken_ruby/version.rb
35
+ - script/release
36
36
  - sig/tiktoken_ruby.rbs
37
37
  homepage: https://github.com/IAPark/tiktoken_ruby
38
38
  licenses:
@@ -49,17 +49,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
49
49
  requirements:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: '3.1'
52
+ version: '3.2'
53
53
  - - "<"
54
54
  - !ruby/object:Gem::Version
55
- version: 3.4.dev
55
+ version: 3.3.dev
56
56
  required_rubygems_version: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
- version: 3.1.0
60
+ version: 3.4.0
61
61
  requirements: []
62
- rubygems_version: 3.4.4
62
+ rubygems_version: 3.5.23
63
63
  signing_key:
64
64
  specification_version: 4
65
65
  summary: Ruby wrapper for Tiktoken