-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.zig.zon
42 lines (41 loc) · 1.83 KB
/
build.zig.zon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.{
.name = "ava",
.version = "0.0.1",
.dependencies = .{
.llama_cpp = .{
.url = "https://github.com/ggerganov/llama.cpp/archive/0e9f760.tar.gz",
.hash = "1220be8455d0fce9723e3b864ab57db0ed4ebfb2a834cc0f3765da6a4d77a6b0e9c2",
},
.llama_cpp_macos = .{
.optional = true,
.url = "https://github.com/cztomsik/llama.cpp-dylib/releases/download/b3908/llama-dylib-macos-arm64.zip",
.hash = "12209a19afcc165ef53cf2df1901aba44f49025b3c03f5495f19556aa065ebe947c7",
},
.llama_cpp_windows = .{
.optional = true,
.url = "https://github.com/cztomsik/llama.cpp-dylib/releases/download/b3908/llama-dylib-win-x64.zip",
.hash = "12207028e2c931d7c3c78b90a0159f9e6f54cad9080333c5e2494a88806f46d8f85c",
},
.llama_cpp_linux = .{
.optional = true,
.url = "https://github.com/cztomsik/llama.cpp-dylib/releases/download/b3908/llama-dylib-ubuntu-x64.zip",
.hash = "1220a8c4288caece09dda6c7cf2c8b578fadd7cce747334d1be90c2091282310d2ce",
},
.webview = .{
.optional = true,
.url = "https://github.com/webview/webview/archive/67d1161.tar.gz",
.hash = "1220a2228027f51755abaf52a3917523349c9669e8be20f03c7d8b1c2c6bfa60c07c",
},
.tokamak = .{
.url = "git+https://github.com/cztomsik/tokamak?ref=main#9df551920f8d3af9a404ca2d5ff0d02c0cdf5c30",
.hash = "1220e5e7634ef15051808a64e5a2c98207b27a0975f1e72ae3de65a308a521b5cf1d",
},
.fridge = .{
.url = "git+https://github.com/cztomsik/fridge?ref=main#c6df05c72cc0d3be527e21db889a59bb7ce485bb",
.hash = "12201cb6039127c7a4101d430d64cb36e2fb0577bb70bba0456c69064b34d1ef4190",
},
},
.paths = .{
"",
},
}