llama_cpp 0.17.3 → 0.17.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4a52ad29464deda885f25d070e74dd9f2d05dc635535556cd7286aa9950f08c
4
- data.tar.gz: e51513df4e7d36b2dce2356daf8ee500b035f4ef4dcb33933bc35f7fa61e1063
3
+ metadata.gz: 9a6696cb7ae4dbc86334ee03a1b46040df4bc0753e5ead6e8bd90c43e0823f3a
4
+ data.tar.gz: 7ebd54912d313684179f82cc45762b12986729d2bded48801349644e5b6b40fb
5
5
  SHA512:
6
- metadata.gz: e4c092b79017ea8b393bd364dc29cc418f259915781e2be6fc7181029ba4446863845d915196aa49dbb4e0fb25d3d534373917be0b93ef897c28f0e79f687a98
7
- data.tar.gz: 71bab30d25455e31bcb25277fd91dc56bede4013454cf6b9ace3833694c04712d7a667f903d754117c907e39684e90344cdc4b4f67394fa2f09dc5c264ad5401
6
+ metadata.gz: 488f3d7646fa13ab0954ba61889848d6ae23a64856891061428a39d7c182024aad57bc9a9990d5fd5476f26a89569afde517997dac1fc76dda2ccc927141a067
7
+ data.tar.gz: b0300223f2034e8460f86a3c8e8f6222d2df446ca925554bcf56d72400c3b2a38c9375b4c7a15f32f1288a0ad2bab7f24d2ec3176dd0bc65ad8cc7debf710ab6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [[0.17.4](https://github.com/yoshoku/llama_cpp.rb/compare/v0.17.3...v0.17.4)] - 2024-07-27
2
+
3
+ - Change supported llama.cpp version to b3436.
4
+ - Add `LLAMA_VOCAB_PRE_TYPE_TEKKEN` constant.
5
+ - Change `LLAMA_SESSION_VERSION` value from 6 to 7.
6
+
1
7
  ## [[0.17.3](https://github.com/yoshoku/llama_cpp.rb/compare/v0.17.2...v0.17.3)] - 2024-07-21
2
8
 
3
9
  - Change supported llama.cpp version to b3405.
@@ -3620,6 +3620,7 @@ extern "C" void Init_llama_cpp(void) {
3620
3620
  rb_define_const(rb_mLLaMACpp, "LLAMA_VOCAB_PRE_TYPE_CHATGLM4", INT2NUM(LLAMA_VOCAB_PRE_TYPE_CHATGLM4));
3621
3621
  rb_define_const(rb_mLLaMACpp, "LLAMA_VOCAB_PRE_TYPE_VIKING", INT2NUM(LLAMA_VOCAB_PRE_TYPE_VIKING));
3622
3622
  rb_define_const(rb_mLLaMACpp, "LLAMA_VOCAB_PRE_TYPE_JAIS", INT2NUM(LLAMA_VOCAB_PRE_TYPE_JAIS));
3623
+ rb_define_const(rb_mLLaMACpp, "LLAMA_VOCAB_PRE_TYPE_TEKKEN", INT2NUM(LLAMA_VOCAB_PRE_TYPE_TEKKEN));
3623
3624
 
3624
3625
  rb_define_const(rb_mLLaMACpp, "LLAMA_TOKEN_TYPE_UNDEFINED", INT2NUM(LLAMA_TOKEN_TYPE_UNDEFINED));
3625
3626
  rb_define_const(rb_mLLaMACpp, "LLAMA_TOKEN_TYPE_NORMAL", INT2NUM(LLAMA_TOKEN_TYPE_NORMAL));
@@ -3,8 +3,8 @@
3
3
  # llama_cpp.rb provides Ruby bindings for the llama.cpp.
4
4
  module LLaMACpp
5
5
  # The version of llama_cpp.rb you install.
6
- VERSION = '0.17.3'
6
+ VERSION = '0.17.4'
7
7
 
8
8
  # The supported version of llama.cpp.
9
- LLAMA_CPP_VERSION = 'b3405'
9
+ LLAMA_CPP_VERSION = 'b3436'
10
10
  end
data/sig/llama_cpp.rbs CHANGED
@@ -37,6 +37,7 @@ module LLaMACpp
37
37
  LLAMA_VOCAB_PRE_TYPE_CHATGLM4: Integer
38
38
  LLAMA_VOCAB_PRE_TYPE_VIKING: Integer
39
39
  LLAMA_VOCAB_PRE_TYPE_JAIS: Integer
40
+ LLAMA_VOCAB_PRE_TYPE_TEKKEN: Integer
40
41
 
41
42
  LLAMA_TOKEN_ATTR_UNDEFINED: Integer
42
43
  LLAMA_TOKEN_ATTR_UNKNOWN: Integer
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: llama_cpp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.3
4
+ version: 0.17.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-21 00:00:00.000000000 Z
11
+ date: 2024-07-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: llama_cpp.rb provides Ruby bindings for the llama.cpp.
14
14
  email: