diff --git a/gptel.el b/gptel.el index 0052fe1..8893dbe 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")))