From a8a4d96bbad931da37d8b98692b549032593f133 Mon Sep 17 00:00:00 2001 From: Jean-Marc Saffroy Date: Sat, 31 Aug 2024 12:30:12 +0200 Subject: [PATCH] Add recipes for ellama and its dependencies: llm and plz (#2955) --- recipes/ellama.rcp | 6 ++++++ recipes/llm.rcp | 6 ++++++ recipes/plz.rcp | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100644 recipes/ellama.rcp create mode 100644 recipes/llm.rcp create mode 100644 recipes/plz.rcp diff --git a/recipes/ellama.rcp b/recipes/ellama.rcp new file mode 100644 index 000000000..6a4312aef --- /dev/null +++ b/recipes/ellama.rcp @@ -0,0 +1,6 @@ +(:name ellama + :description "Tool for interacting with LLMs" + :minimum-emacs-version "28.1" + :type github + :pkgname "s-kostyaev/ellama" + :depends (llm spinner compat)) diff --git a/recipes/llm.rcp b/recipes/llm.rcp new file mode 100644 index 000000000..33a26d6af --- /dev/null +++ b/recipes/llm.rcp @@ -0,0 +1,6 @@ +(:name llm + :description "Interface to pluggable llm backends" + :minimum-emacs-version "28.1" + :type github + :pkgname "ahyatt/llm" + :depends (plz)) diff --git a/recipes/plz.rcp b/recipes/plz.rcp new file mode 100644 index 000000000..ae8d03d97 --- /dev/null +++ b/recipes/plz.rcp @@ -0,0 +1,6 @@ +(:name plz + :description "An HTTP library that uses curl as a backend" + :minimum-emacs-version "27.1" + :type github + :pkgname "alphapapa/plz.el" + :depends ())