branch: elpa/gptel
commit 443885f96d2002d29ab2f76fca4ef43de569355a
Author: David J. Rosenbaum <[email protected]>
Commit: Karthik Chikmagalur <[email protected]>
gptel-openai: Add gpt-5.6 models
* gptel-openai.el (gptel--openai-models): Add gpt-5.6-sol,
gpt-5.6-terra and gpt-5.6-luna.
* NEWS (New models and backends): Mention new models.
---
NEWS | 3 +++
gptel-openai.el | 24 ++++++++++++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/NEWS b/NEWS
index f39c36af78..96fa5feb5f 100644
--- a/NEWS
+++ b/NEWS
@@ -60,6 +60,9 @@
- Gemini backend: Add support for =gemini-3.5-flash=,
=gemini-3.1-flash-lite= and deprecate the preview version.
+- OpenAI backend: Add support for =gpt-5.6-sol=, =gpt-5.6-terra= and
+ =gpt-5.6-luna=.
+
- xAI backend: Add support for =grok-4.3= and =grok-build-0.1=.
** New features and UI changes
diff --git a/gptel-openai.el b/gptel-openai.el
index 4288734d99..f8e2795f56 100644
--- a/gptel-openai.el
+++ b/gptel-openai.el
@@ -503,6 +503,30 @@ Media files, if present, are placed in `gptel-context'."
:input-cost 30
:output-cost 180
:cutoff-date "2025-08")
+ (gpt-5.6-sol
+ :description "The best model for coding and agentic tasks"
+ :capabilities (media tool-use json url responses-api)
+ :mime-types ("image/jpeg" "image/png" "image/gif" "image/webp")
+ :context-window 1050
+ :input-cost 5
+ :output-cost 30
+ :cutoff-date "2026-02")
+ (gpt-5.6-terra
+ :description "Faster, more cost-efficient version of GPT-5.6"
+ :capabilities (media tool-use json url responses-api)
+ :mime-types ("image/jpeg" "image/png" "image/gif" "image/webp")
+ :context-window 1050
+ :input-cost 2.5
+ :output-cost 15
+ :cutoff-date "2026-02")
+ (gpt-5.6-luna
+ :description "Fastest, cheapest version of GPT-5.6"
+ :capabilities (media tool-use json url responses-api)
+ :mime-types ("image/jpeg" "image/png" "image/gif" "image/webp")
+ :context-window 1050
+ :input-cost 1
+ :output-cost 6
+ :cutoff-date "2026-02")
(gpt-5.5
:description "The best model for coding and agentic tasks"
:capabilities (media tool-use json url responses-api)