branch: externals/ellama
commit c7c30aa1c317ed665acb96580986cbd5f2e52079
Author: Byron Clark <by...@theclarkfamily.name>
Commit: Byron Clark <by...@theclarkfamily.name>

    Fix ellama-providers validation
    
    Extra quote caused validation to fail for all values.
    
    Fixes #149
---
 ellama.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ellama.el b/ellama.el
index 1b6ae6e028..e89a400732 100644
--- a/ellama.el
+++ b/ellama.el
@@ -95,7 +95,7 @@
   "LLM provider list for fast switching."
   :group 'ellama
   :type '(alist :key-type string
-               :value-type '(sexp :validate 'llm-standard-provider-p)))
+               :value-type (sexp :validate 'llm-standard-provider-p)))
 
 (defcustom ellama-spinner-type 'progress-bar
   "Spinner type for ellama."

Reply via email to