emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/gptel 2b938114cf 264/273: gptel: Add GPT 4 Turbo (#286)


From: ELPA Syncer
Subject: [nongnu] elpa/gptel 2b938114cf 264/273: gptel: Add GPT 4 Turbo (#286)
Date: Wed, 1 May 2024 10:02:53 -0400 (EDT)

branch: elpa/gptel
commit 2b938114cfbf4189faab388d605db81af1474a21
Author: Norio Suzuki <norio.suzuki@gmail.com>
Commit: GitHub <noreply@github.com>

    gptel: Add GPT 4 Turbo (#286)
    
    * gptel.el (gptel--openai, gptel-model): Add gpt-4-turbo model.
---
 gptel.el | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/gptel.el b/gptel.el
index 0052fe1bc1..8893dbe85d 100644
--- a/gptel.el
+++ b/gptel.el
@@ -399,9 +399,12 @@ by the LLM provider's API.
 The current options for ChatGPT are
 - \"gpt-3.5-turbo\"
 - \"gpt-3.5-turbo-16k\"
-- \"gpt-4\" (experimental)
-- \"gpt-4-1106-preview\" (experimental)
- 
+- \"gpt-4\"
+- \"gpt-4-turbo\"
+- \"gpt-4-turbo-preview\"
+- \"gpt-4-32k\"
+- \"gpt-4-1106-preview\"
+
 To set the model for a chat session interactively call
 `gptel-send' with a prefix argument."
   :safe #'always
@@ -411,6 +414,7 @@ To set the model for a chat session interactively call
           (const :tag "GPT 3.5 turbo" "gpt-3.5-turbo")
           (const :tag "GPT 3.5 turbo 16k" "gpt-3.5-turbo-16k")
           (const :tag "GPT 4" "gpt-4")
+          (const :tag "GPT 4 turbo" "gpt-4-turbo")
           (const :tag "GPT 4 turbo (preview)" "gpt-4-turbo-preview")
           (const :tag "GPT 4 32k" "gpt-4-32k")
           (const :tag "GPT 4 1106 (preview)" "gpt-4-1106-preview")))
@@ -441,7 +445,7 @@ with differing settings.")
    "ChatGPT"
    :key 'gptel-api-key
    :stream t
-   :models '("gpt-3.5-turbo" "gpt-3.5-turbo-16k" "gpt-4"
+   :models '("gpt-3.5-turbo" "gpt-3.5-turbo-16k" "gpt-4" "gpt-4-turbo"
              "gpt-4-turbo-preview" "gpt-4-32k" "gpt-4-1106-preview"
              "gpt-4-0125-preview")))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]