Feat:Sway with me
Ez wayland
This commit is contained in:
@@ -579,38 +579,38 @@
|
||||
(make-llm-ollama
|
||||
;; this model should be pulled to use it
|
||||
;; value should be the same as you print in terminal during pull
|
||||
:chat-model "qwen2.5-coder"
|
||||
:chat-model "qwen2.5-coder:latest"
|
||||
:embedding-model "nomic-embed-text"
|
||||
:default-chat-non-standard-params '(("num_ctx" . 8192))))
|
||||
(setopt ellama-summarization-provider
|
||||
(make-llm-ollama
|
||||
:chat-model "qwen2.5:3b"
|
||||
:embedding-model "nomic-embed-text"
|
||||
:default-chat-non-standard-params '(("num_ctx" . 32768))))
|
||||
(setopt ellama-coding-provider
|
||||
(make-llm-ollama
|
||||
:chat-model "qwen2.5-coder:3b"
|
||||
:embedding-model "nomic-embed-text"
|
||||
:default-chat-non-standard-params '(("num_ctx" . 32768))))
|
||||
;; (setopt ellama-summarization-provider
|
||||
;; (make-llm-ollama
|
||||
;; :chat-model "qwen2.5:3b"
|
||||
;; :embedding-model "nomic-embed-text"
|
||||
;; :default-chat-non-standard-params '(("num_ctx" . 32768))))
|
||||
;; (setopt ellama-coding-provider
|
||||
;; (make-llm-ollama
|
||||
;; :chat-model "qwen2.5-coder"
|
||||
;; :embedding-model "nomic-embed-text"
|
||||
;; :default-chat-non-standard-params '(("num_ctx" . 32768))))
|
||||
;; Predefined llm providers for interactive switching.
|
||||
;; You shouldn't add ollama providers here - it can be selected interactively
|
||||
;; without it. It is just example.
|
||||
;; Naming new sessions with llm
|
||||
(setopt ellama-naming-provider
|
||||
(make-llm-ollama
|
||||
:chat-model "deepseek-r1"
|
||||
:chat-model "deepseek-r1:1.5b"
|
||||
:embedding-model "nomic-embed-text"
|
||||
:default-chat-non-standard-params '(("stop" . ("\n")))))
|
||||
(setopt ellama-naming-scheme 'ellama-generate-name-by-llm)
|
||||
;; Translation llm provider
|
||||
;; (setopt ellama-translation-provider
|
||||
;; (make-llm-ollama
|
||||
;; :chat-model "qwen2.5:3b"
|
||||
;; :embedding-model "nomic-embed-text"
|
||||
;; :default-chat-non-standard-params
|
||||
;; '(("num_ctx" . 32768))))
|
||||
(setopt ellama-translation-provider
|
||||
(make-llm-ollama
|
||||
:chat-model "deepseek-r1:1.5b"
|
||||
:embedding-model "nomic-embed-text"
|
||||
:default-chat-non-standard-params
|
||||
'(("num_ctx" . 32768))))
|
||||
(setopt ellama-extraction-provider (make-llm-ollama
|
||||
:chat-model "qwen2.5-coder"
|
||||
:chat-model "qwen2.5-coder:latest"
|
||||
:embedding-model "nomic-embed-text"
|
||||
:default-chat-non-standard-params
|
||||
'(("num_ctx" . 32768))))
|
||||
|
||||
Reference in New Issue
Block a user