llama_cpp 0.19.2 → 0.19.3

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: b9d8c3d491c1da2a69c57d881b9a712078868e9d11f9fdbda3cc9510a4d19c77
4
- data.tar.gz: 4e4db26e6f428f9d9eac6ba2097a4453baa61515eff0249a12a1f57b51d89eb3
3
+ metadata.gz: 6f3cfec863591d3bd24156c27612d65dc565194c9272e1f69bc79ad77fe1b2a0
4
+ data.tar.gz: 29426a27e23f21ec63ebc4db0419bf9fe96e5e063ad0e42285b361e4f9ab5d50
5
5
  SHA512:
6
- metadata.gz: dfa8562de2134396f10e8b085c4935a58bdfbc37948d29e668592788739fcdbef565bc14faed2e3d7580df2d99592b20c36964fad0b66c33e707efab13477d6e
7
- data.tar.gz: ee7d052d9daa1acaf3ae7ecc9b9e87df30d4743781ca145553c32d62b6e7b849b85d50644da8b8e10829b9396f4389989f9252319f8abb272ed102170bbdf39e
6
+ metadata.gz: d52e67395a3cbde1108968837166a295f3a9a6d033ef230e1c9223f0f1dd92db4733b4b8bae37ca8f9ee648591dc082f20ceae234e86271cecb5f29e34507e14
7
+ data.tar.gz: aed2fd04608461b74c26d44c1f26591aada8699e10d4e23366cca28b798be227013f47aa2a2dcff3ccf2900f5f04fb7ed25ae6853f921d26b17b938713e3afd1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [[0.19.2](https://github.com/yoshoku/llama_cpp.rb/compare/v0.19.2...v0.19.3)] - 2025-04-12
2
+
3
+ - Change supported llama.cpp version to b5120
4
+ - Add `LLAMA_VOCAB_PRE_TYPE_LLAMA4` constant.
1
5
 
2
6
  ## [[0.19.2](https://github.com/yoshoku/llama_cpp.rb/compare/v0.19.1...v0.19.2)] - 2025-04-05
3
7
 
@@ -4030,6 +4030,7 @@ void Init_llama_cpp(void) {
4030
4030
  rb_define_const(rb_mLlamaCpp, "LLAMA_VOCAB_PRE_TYPE_SUPERBPE", INT2NUM(LLAMA_VOCAB_PRE_TYPE_SUPERBPE));
4031
4031
  rb_define_const(rb_mLlamaCpp, "LLAMA_VOCAB_PRE_TYPE_TRILLION", INT2NUM(LLAMA_VOCAB_PRE_TYPE_TRILLION));
4032
4032
  rb_define_const(rb_mLlamaCpp, "LLAMA_VOCAB_PRE_TYPE_BAILINGMOE", INT2NUM(LLAMA_VOCAB_PRE_TYPE_BAILINGMOE));
4033
+ rb_define_const(rb_mLlamaCpp, "LLAMA_VOCAB_PRE_TYPE_LLAMA4", INT2NUM(LLAMA_VOCAB_PRE_TYPE_LLAMA4));
4033
4034
  /* llama_rope_type */
4034
4035
  /* Document-const: LlamaCpp::LLAMA_ROPE_TYPE_NONE */
4035
4036
  rb_define_const(rb_mLlamaCpp, "LLAMA_ROPE_TYPE_NONE", INT2NUM(LLAMA_ROPE_TYPE_NONE));
@@ -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.19.2'
6
+ VERSION = '0.19.3'
7
7
 
8
8
  # The supported version of llama.cpp.
9
- LLAMA_CPP_VERSION = 'b5050'
9
+ LLAMA_CPP_VERSION = 'b5120'
10
10
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: llama_cpp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.2
4
+ version: 0.19.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-04-05 00:00:00.000000000 Z
10
+ date: 2025-04-12 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  description: llama_cpp.rb provides Ruby bindings for the llama.cpp.
13
13
  email: