From 9c9348816c7b6499b347283d2d26b983905a0e00 Mon Sep 17 00:00:00 2001 From: Tony Gair Date: Mon, 22 Jun 2026 11:45:20 +0100 Subject: [PATCH] df_llama 0.1.0 (#1958) * Add df_llama 0.1.0 * df_llama: build note -> notes field (Alire review) * df_llama: tidy notes (drop unshipped setup-llama.sh ref); re-pin to 0c7c3e9c5 * df_llama: re-pin to f44da7bd5 (all setup-llama.sh refs gone) --------- Co-authored-by: Tony Gair --- index/df/df_llama/df_llama-0.1.0.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 index/df/df_llama/df_llama-0.1.0.toml diff --git a/index/df/df_llama/df_llama-0.1.0.toml b/index/df/df_llama/df_llama-0.1.0.toml new file mode 100644 index 00000000..d368f7c1 --- /dev/null +++ b/index/df/df_llama/df_llama-0.1.0.toml @@ -0,0 +1,24 @@ +name = "df_llama" +description = "Ada bindings to llama.cpp - run a local LLM on-device from Ada" +version = "0.1.0" +authors = ["The Dark Factory Ltd"] +maintainers = ["tony.gair@thedarkfactory.co.uk"] +maintainers-logins = ["tonygair"] +licenses = "MIT" +website = "https://github.com/the-dark-factory/llama-ada" +tags = ["binding", "llm", "ai", "llama", "ggml"] +project-files = ["df_llama.gpr"] +auto-gpr-with = false +notes = "Needs the llama.cpp shared libraries: build llama.cpp and point LLAMA_CPP_LIB at its build output (gpr default: vendor/llama.cpp/build/bin). The example also needs a local GGUF model." + +[build-switches] +"*".style_checks = "no" + +[available.'case(os)'] +macos = true +linux = true +windows = false # Untested. + +[origin] +commit = "f44da7bd5e883a686812a5f8d58e15f40fcc1889" +url = "git+https://github.com/the-dark-factory/llama-ada.git"