From 3e01704697005bc663baec836ccf485d1561314e Mon Sep 17 00:00:00 2001 From: hlhr202 Date: Fri, 24 Mar 2023 16:10:31 +0800 Subject: [PATCH] chore: update llama-rs git --- Cargo.lock | 4 ++-- packages/core/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bf7463a..4bef6ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -166,7 +166,7 @@ dependencies = [ [[package]] name = "ggml-raw" version = "0.1.0" -source = "git+https://github.com/setzer22/llama-rs.git?branch=main#bf7bdbcfff3114dcbdafb6eb7eed58f04f19b1c3" +source = "git+https://github.com/rustformers/llama-rs.git?branch=main#bf7bdbcfff3114dcbdafb6eb7eed58f04f19b1c3" dependencies = [ "cc", ] @@ -263,7 +263,7 @@ dependencies = [ [[package]] name = "llama-rs" version = "0.1.0" -source = "git+https://github.com/setzer22/llama-rs.git?branch=main#bf7bdbcfff3114dcbdafb6eb7eed58f04f19b1c3" +source = "git+https://github.com/rustformers/llama-rs.git?branch=main#bf7bdbcfff3114dcbdafb6eb7eed58f04f19b1c3" dependencies = [ "bincode", "bytemuck", diff --git a/packages/core/Cargo.toml b/packages/core/Cargo.toml index 1435a54..f604bfa 100644 --- a/packages/core/Cargo.toml +++ b/packages/core/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["cdylib"] # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix napi = { version = "2.11.1", default-features = false, features = ["napi6", "tokio_rt"] } napi-derive = "2.11.0" -llama-rs = { git = "https://github.com/setzer22/llama-rs.git", branch = "main" } +llama-rs = { git = "https://github.com/rustformers/llama-rs.git", branch = "main" } clap = { version = "4.1.8", features = ["derive"] } env_logger = "0.10.0" log = "0.4"