branch: elpa/gptel
commit 73133590fa34c51bf2c528862be103a97c6463f0
Author: Pablo Stafforini <pa...@stafforini.com>
Commit: GitHub <nore...@github.com>

    gptel-openai: Add support for gpt-4.5-preview (#673)
    
    * gptel.el (gptel--openai-models): Add gpt-4.5-preview.
    
    See https://openai.com/index/introducing-gpt-4-5/
---
 gptel.el | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/gptel.el b/gptel.el
index e6eb36425f..2b853b4c16 100644
--- a/gptel.el
+++ b/gptel.el
@@ -528,6 +528,14 @@ To set the temperature for a chat session interactively 
call
      :input-cost 10
      :output-cost 30
      :cutoff-date "2023-12")
+    (gpt-4.5-preview
+     :description "Largest and most capable GPT model to date"
+     :capabilities (media tool-use url)
+     :mime-types ("image/jpeg" "image/png" "image/gif" "image/webp")
+     :context-window 128
+     :input-cost 75
+     :output-cost 150
+     :cutoff-date "2023-10")
     (o1
      :description "Reasoning model designed to solve hard problems across 
domains"
      :capabilities (nosystem media reasoning)
@@ -612,7 +620,7 @@ Keys:
 Information about the OpenAI models was obtained from the following
 sources:
 
-- <https://openai.com/pricing>
+- <https://platform.openai.com/docs/pricing>
 - <https://platform.openai.com/docs/models>")
 
 (defcustom gptel-model 'gpt-4o-mini

Reply via email to