2 files changed
+11
-10
Cargo.lock
+9
-8
@@ -3264,7 +3264,7 @@ dependencies = [
3264
[[package]]
3265
name = "mistralrs"
3266
version = "0.8.1"
3267
-source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#020dcbf8e2c4147c16bb015e89435811501baa28"
3267
+source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
3268
dependencies = [
3269
"anyhow",
3270
"candle-core",
@@ -3291,7 +3291,7 @@ dependencies = [
3291
[[package]]
3292
name = "mistralrs-audio"
3293
version = "0.8.1"
3294
-source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#020dcbf8e2c4147c16bb015e89435811501baa28"
3294
+source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
3295
dependencies = [
3296
"anyhow",
3297
"apodize",
@@ -3302,7 +3302,7 @@ dependencies = [
3302
[[package]]
3303
name = "mistralrs-core"
3304
version = "0.8.1"
3305
-source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#020dcbf8e2c4147c16bb015e89435811501baa28"
3305
+source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
3306
dependencies = [
3307
"ahash",
3308
"akin",
@@ -3399,7 +3399,7 @@ dependencies = [
3399
[[package]]
3400
name = "mistralrs-macros"
3401
version = "0.8.1"
3402
-source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#020dcbf8e2c4147c16bb015e89435811501baa28"
3402
+source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
3403
dependencies = [
3404
"darling 0.23.0",
3405
"proc-macro2",
@@ -3410,7 +3410,7 @@ dependencies = [
3410
[[package]]
3411
name = "mistralrs-mcp"
3412
version = "0.8.1"
3413
-source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#020dcbf8e2c4147c16bb015e89435811501baa28"
3413
+source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
3414
dependencies = [
3415
"anyhow",
3416
"async-trait",
@@ -3430,7 +3430,7 @@ dependencies = [
3430
[[package]]
3431
name = "mistralrs-paged-attn"
3432
version = "0.8.1"
3433
-source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#020dcbf8e2c4147c16bb015e89435811501baa28"
3433
+source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
3434
dependencies = [
3435
"anyhow",
3436
"candle-core",
@@ -3446,7 +3446,7 @@ dependencies = [
3446
[[package]]
3447
name = "mistralrs-quant"
3448
version = "0.8.1"
3449
-source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#020dcbf8e2c4147c16bb015e89435811501baa28"
3449
+source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
3450
dependencies = [
3451
"byteorder",
3452
"candle-core",
@@ -3475,7 +3475,7 @@ dependencies = [
3475
[[package]]
3476
name = "mistralrs-vision"
3477
version = "0.8.1"
3478
-source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#020dcbf8e2c4147c16bb015e89435811501baa28"
3478
+source = "git+https://github.com/setoelkahfi/mistral.rs?branch=fix%2Fall-platform-fixes#e53956bcd1b40c8221f79b919d78c1e496aba634"
3479
dependencies = [
3480
"candle-core",
3481
"image",
@@ -3799,6 +3799,7 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
3799
[[package]]
3800
name = "onde"
3801
version = "0.1.8"
3802
+source = "git+https://github.com/ondeinference/onde?branch=development#dfcc6ecfa74ac965af6c33ba0bd06d9cf241fc12"
3803
dependencies = [
3804
"anyhow",
3805
"cc",
Cargo.toml
+2
-2
@@ -21,8 +21,8 @@ path = "src/main.rs"
21
agent-client-protocol = { version = "0.10.4", features = ["unstable_session_fork", "unstable_session_additional_directories"] }
22
23
# Onde Inference engine (local LLM)
24
-onde = { path = "../onde" }
25
-# onde = { git = "https://github.com/ondeinference/onde", branch = "development" }
24
+# onde = { path = "../onde" }
25
+onde = { git = "https://github.com/ondeinference/onde", branch = "development" }
26
27
# Async runtime
28
async-trait = "0.1"