Skip to content

Commit 0384699

Browse files
committed
chore: move embeddings into the examples directory
1 parent 4333caa commit 0384699

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
[workspace]
22
resolver = "2"
3-
members = ["llama-cpp-sys-2", "llama-cpp-2", "embeddings", "examples/simple"]
3+
members = [
4+
"llama-cpp-sys-2",
5+
"llama-cpp-2",
6+
"examples/embeddings",
7+
"examples/simple",
8+
]
49

510
[workspace.dependencies]
611
# core library deps
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ version = "0.1.69"
44
edition = "2021"
55

66
[dependencies]
7-
llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.69" }
7+
llama-cpp-2 = { path = "../../llama-cpp-2", version = "0.1.69" }
88
hf-hub = { workspace = true }
9-
clap = { workspace = true , features = ["derive"] }
9+
clap = { workspace = true, features = ["derive"] }
1010
anyhow = { workspace = true }
1111

1212
[features]
1313
cuda = ["llama-cpp-2/cuda"]
14-
metal = ["llama-cpp-2/metal"]
14+
metal = ["llama-cpp-2/metal"]
1515
native = ["llama-cpp-2/native"]
1616
vulkan = ["llama-cpp-2/vulkan"]
1717

0 commit comments

Comments
 (0)