liter_llm 1.4.0.pre.rc.35 → 1.4.0.pre.rc.36
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 +4 -4
- data/ext/liter_llm_rb/native/Cargo.lock +3 -3
- data/ext/liter_llm_rb/native/Cargo.toml +2 -2
- data/lib/liter_llm/version.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad0a2db8aa0ab049d19471796b1f44db8773be179d9c7514028f2b1c955d1a5f
|
|
4
|
+
data.tar.gz: dec78cfef1bdfaffb5526d44d992948508af202843390f7de6a6b6ce92ad1be8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8f5fbccc08722a5c9596d0cde403fe47a19d538437cd3c1c5258bed6c357c6bb12268375f283bfbec93335989cc798f2b0ebd5d5a3ebfecb9465f6a8b1bab5a
|
|
7
|
+
data.tar.gz: 53435239260e0e8d259f239fe627100ea791a5d5ab6674e9216e882a39da12d71fe6a31a158acfc889a09e8304e02fe82c9ff25608541983c5e0b048dbdfbf06
|
|
@@ -1662,9 +1662,9 @@ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
|
1662
1662
|
|
|
1663
1663
|
[[package]]
|
|
1664
1664
|
name = "liter-llm"
|
|
1665
|
-
version = "1.4.0-rc.
|
|
1665
|
+
version = "1.4.0-rc.36"
|
|
1666
1666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1667
|
-
checksum = "
|
|
1667
|
+
checksum = "6e067e3749edc7a6bbcd8c6f22d6b30777f6ef6fb757f85e300471a028ffc4c8"
|
|
1668
1668
|
dependencies = [
|
|
1669
1669
|
"aws-credential-types",
|
|
1670
1670
|
"aws-sigv4",
|
|
@@ -1696,7 +1696,7 @@ dependencies = [
|
|
|
1696
1696
|
|
|
1697
1697
|
[[package]]
|
|
1698
1698
|
name = "liter-llm-rb"
|
|
1699
|
-
version = "1.4.0-rc.
|
|
1699
|
+
version = "1.4.0-rc.36"
|
|
1700
1700
|
dependencies = [
|
|
1701
1701
|
"futures",
|
|
1702
1702
|
"liter-llm",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "liter-llm-rb"
|
|
3
|
-
version = "1.4.0-rc.
|
|
3
|
+
version = "1.4.0-rc.36"
|
|
4
4
|
edition = "2024"
|
|
5
5
|
license = "MIT"
|
|
6
6
|
description = "Universal LLM API client with Rust-powered polyglot bindings."
|
|
@@ -15,7 +15,7 @@ crate-type = ["cdylib"]
|
|
|
15
15
|
|
|
16
16
|
[dependencies]
|
|
17
17
|
futures = "0.3"
|
|
18
|
-
liter-llm = { version = "1.4.0-rc.
|
|
18
|
+
liter-llm = { version = "1.4.0-rc.36", features = ["native-http", "full"] }
|
|
19
19
|
magnus = "0.8"
|
|
20
20
|
serde = { version = "1", features = ["derive"] }
|
|
21
21
|
serde_json = "1"
|
data/lib/liter_llm/version.rb
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
# alef:hash:
|
|
2
|
+
# alef:hash:0be04a1a681d3fc9698aa12c75300a4f8aa4adca8575e9911059b4ecb44bfef1
|
|
3
3
|
# To regenerate: alef generate
|
|
4
4
|
# To verify freshness: alef verify --exit-code
|
|
5
5
|
# Issues & docs: https://github.com/kreuzberg-dev/alef
|
|
6
6
|
# frozen_string_literal: true
|
|
7
7
|
|
|
8
8
|
module LiterLlm
|
|
9
|
-
VERSION = "1.4.0.pre.rc.
|
|
9
|
+
VERSION = "1.4.0.pre.rc.36"
|
|
10
10
|
end
|