Skip to content

Commit bb40dae

Browse files
committed
feat: decoded media via NIXL
Signed-off-by: Alexandre Milesi <[email protected]>
1 parent ae4b08a commit bb40dae

File tree

13 files changed

+424
-78
lines changed

13 files changed

+424
-78
lines changed

Cargo.lock

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ keywords = ["llm", "genai", "inference", "nvidia", "distributed"]
4747
dynamo-runtime = { path = "lib/runtime", version = "0.6.1" }
4848
dynamo-llm = { path = "lib/llm", version = "0.6.1" }
4949
dynamo-config = { path = "lib/config", version = "0.6.1" }
50+
dynamo-memory = { path = "lib/memory", version = "0.6.1" }
5051
dynamo-tokens = { path = "lib/tokens", version = "0.6.1" }
5152
dynamo-async-openai = { path = "lib/async-openai", version = "0.6.1", features = [
5253
"byot",

lib/bindings/python/Cargo.lock

Lines changed: 172 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/llm/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ harness = false
3333
name = "transfer_context_v2"
3434
harness = false
3535
required-features = ["block-manager", "testing-cuda"]
36+
3637
[dependencies]
3738
# repo
3839
dynamo-runtime = { workspace = true }
@@ -41,6 +42,7 @@ dynamo-runtime = { workspace = true }
4142
aho-corasick = "1.1"
4243
anyhow = { workspace = true }
4344
dynamo-async-openai = { workspace = true }
45+
dynamo-memory = { workspace = true }
4446
dynamo-parsers = { workspace = true }
4547
async-stream = { workspace = true }
4648
async-trait = { workspace = true }
@@ -142,7 +144,7 @@ json-five = { version = "0.3" }
142144
# media loading in the preprocessor
143145
reqwest = { workspace = true }
144146
base64 = { version = "0.22" }
145-
image = { version = "0.25" }
147+
image = { version = "0.25", features = ["default", "serde"] }
146148
tokio-rayon = {version = "2" }
147149
ndarray = { version = "0.16" }
148150

0 commit comments

Comments
 (0)