Skip to content

Commit ae82a2c

Browse files
committed
Add DeepSeek reasoner
The previous code only had DeepSeek Chat. This adds DeepSeek Reasoner (which currently points to DeepSeek R1). See https://api-docs.deepseek.com/quick_start/pricing.
1 parent 8760b38 commit ae82a2c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

chatgpt-shell-deepseek.el

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@ VALIDATE-COMMAND and OTHER-PARAMS for `chatgpt-shell-openai-make-model'."
4646
(defun chatgpt-shell-deepseek-models ()
4747
"Build a list of DeepSeek LLM models."
4848
(list (chatgpt-shell-deepseek-make-model
49+
:version "deepseek-reasoner"
50+
:short-version "reasoner"
51+
:label "DeepSeek"
52+
;; See https://api-docs.deepseek.com/quick_start/token_usage
53+
:token-width 3
54+
;; See https://api-docs.deepseek.com/quick_start/pricing.
55+
:context-window 65536)
56+
(chatgpt-shell-deepseek-make-model
4957
:version "deepseek-chat"
5058
:short-version "chat"
5159
:label "DeepSeek"

0 commit comments

Comments
 (0)