branch: elpa/gptel
commit 2bb081e55e33b3df2b60d51d988713d9470e7d6c
Author: Karthik Chikmagalur <karthikchikmaga...@gmail.com>
Commit: Karthik Chikmagalur <karthikchikmaga...@gmail.com>

    gptel-anthropic: Add support for claude-3-7-sonnet-20250219
    
    * gptel-anthropic.el (gptel--anthropic-models): Add
    claude-3-7-sonnet-20250219.  There is no explicit support for
    specifying the "thinking budget" for this model yet.
    
    See 
https://docs.anthropic.com/en/docs/about-claude/models/extended-thinking-models#next-steps
---
 gptel-anthropic.el | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/gptel-anthropic.el b/gptel-anthropic.el
index 3565893ad5..53dead1a55 100644
--- a/gptel-anthropic.el
+++ b/gptel-anthropic.el
@@ -387,7 +387,15 @@ files in the context."
 ;;         (plist-get (car (last prompts)) :content)))
 
 (defconst gptel--anthropic-models
-  '((claude-3-5-sonnet-20241022
+  '((claude-3-7-sonnet-20250219
+     :description "Hybrid model capable of standard thinking and extended 
thinking modes"
+     :capabilities (media tool-use cache)
+     :mime-types ("image/jpeg" "image/png" "image/gif" "image/webp" 
"application/pdf")
+     :context-window 200
+     :input-cost 3
+     :output-cost 15
+     :cutoff-date "2025-02")
+    (claude-3-5-sonnet-20241022
      :description "Highest level of intelligence and capability"
      :capabilities (media tool-use cache)
      :mime-types ("image/jpeg" "image/png" "image/gif" "image/webp" 
"application/pdf")

Reply via email to