We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b38b34f commit 5f182c2Copy full SHA for 5f182c2
1 file changed
README.md
@@ -75,6 +75,24 @@ Recommended `tree-sitter` configuration:
75
treesit-font-lock-level 4)))
76
```
77
78
+Recommended `gptel` configuration:
79
+```emacs lisp
80
+(use-package gptel
81
+ :ensure t
82
+ :config
83
+ (setq gptel-model 'deepseek-ai/DeepSeek-V3.2
84
+ ;; Randomness in response text, 0 to 2
85
+ gptel-temperature 0
86
+ gptel-backend
87
+ ;; free 2000 request per-day, each model 500
88
+ (gptel-make-openai "Free"
89
+ :host "api-inference.modelscope.cn"
90
+ :stream t
91
+ :key ""
92
+ :models '(Qwen/Qwen2.5-32B-Instruct
93
+ deepseek-ai/DeepSeek-V3.2))))
94
+```
95
+
96
---
97
98
## Installation
0 commit comments