From 494b6ce0591f7400182a775f5295e544b3cf53f0 Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Sun, 16 Nov 2025 22:59:20 +0200 Subject: [PATCH] Compose a library of known local models --- .config/emacs/site-lisp/local-models.el | 37 +++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .config/emacs/site-lisp/local-models.el diff --git a/.config/emacs/site-lisp/local-models.el b/.config/emacs/site-lisp/local-models.el new file mode 100644 index 0000000..337cbfc --- /dev/null +++ b/.config/emacs/site-lisp/local-models.el @@ -0,0 +1,37 @@ +(defconst gptel--local-models + '( + ;; keep-sorted start + ( + hf.co/Orenguteng/Llama-3.1-8B-Lexi-Uncensored-V2-GGUF:latest + :description "Uncensored model based on Llama-3.1-8b-Instruct" + :context-window 128 + :cutoff-date "2023-12" + ) + ( + hf.co/TheBloke/MythoMax-L2-13B-GGUF:latest + :description "Uncensored model proficient at both roleplaying and storywriting" + :context-window 32 + ) + ( + hf.co/bartowski/cognitivecomputations_Dolphin-Mistral-24B-Venice-Edition-GGUF:latest + :description "Uncensored version of Mistral 24B for use within the Venice ecosystem" + :context-window 32 + :cutoff-date "2023-10" + ) + ( + llama3.2:latest + :description "Instruction-tuned model optimized for multilingual dialogue use cases" + :context-window 128 + :cutoff-date "2023-12" + ) + ( + mollysama/rwkv-7-g0a3:13.3b + :description "RWKV7-G1 \"GooseOne\" pure RNN reasoning model, suitable for post-training and fine-tuning" + :context-window 1000 + :cutoff-date "2023-10" + ) + ;; keep-sorted end + ) + "List of known local models and associated properties. +Refer to https://gptel.org/manual.html#models for a description of supported properties" + )