You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -976,14 +980,18 @@ You can pick this backend from the menu when using gptel (see [[#usage][Usage]])
976
980
The above code makes the backend available to select. If you want it to be the default backend for gptel, you can set this as the value of =gptel-backend=. Use this instead of the above.
977
981
#+begin_src emacs-lisp
978
982
;; OPTIONAL configuration
979
-
(setq gptel-model 'claude-3-5-sonnet-20241022
983
+
(setq gptel-model 'claude-sonnet-4-20250514
980
984
gptel-backend
981
985
(gptel-make-bedrock "AWS"
982
-
:region "ap-northeast-1"
983
-
;; subset of gptel--bedrock-models
984
-
:models '(claude-3-5-sonnet-20241022)
985
-
;; optional
986
-
:model-region 'apac))
986
+
;; optionally enable streaming
987
+
:stream t
988
+
:region "ap-northeast-1"
989
+
;; subset of gptel--bedrock-models
990
+
:models '(claude-sonnet-4-20250514)
991
+
;; Model region for cross-region inference profiles. Required for models such
992
+
;; as Claude without on-demand throughput support. One of 'apac, 'eu or 'us.
0 commit comments