-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathllama-cpp-ocaml.opam
38 lines (38 loc) · 1.03 KB
/
llama-cpp-ocaml.opam
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.0.1"
synopsis: "Ctypes bindings to llama.cpp"
description:
"llama-cpp-ocaml is a MIT-licensed set of ctypes bindings to llama.cpp, a performant and lightweight library to perform inference on various kinds of large language models."
maintainer: ["[email protected]"]
authors: ["Ilias Garnier"]
license: "MIT"
tags: ["experimental"]
homepage: "http://github.com/atacama-dev/llama-cpp-ocaml"
bug-reports: "http://github.com/atacama-dev/llama-cpp-ocaml"
available: arch = "x86_64" | arch = "arm64"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.14.1"}
"ctypes" {>= "0.21.1"}
"ctypes-foreign" {>= "0.21.1"}
"integers" {>= "0.7.0"}
"bigarray-compat" {>= "1.1.0"}
"dune-configurator" {>= "2.8"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/atacama-dev/llama-cpp-ocaml"