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
The Bedrock backend gets your AWS credentials from the environment variables. It expects to find either
1060
-
~AWS_ACCESS_KEY_ID~, ~AWS_SECRET_ACCESS_KEY~, ~AWS_SESSION_TOKEN~ (optional), or if present, can use ~AWS_PROFILE~ to get these directly from the ~aws~ cli.
1061
+
The Bedrock backend resolves AWS credentials using the following priority:
1062
+
1. An AWS profile specified via the ~:profile~ parameter.
1063
+
2. An AWS profile from the ~AWS_PROFILE~ environment variable.
1064
+
3. Direct credentials from the ~AWS_ACCESS_KEY_ID~ and ~AWS_SECRET_ACCESS_KEY~ environment variables. The ~AWS_SESSION_TOKEN~ variable is also used if available.
1061
1065
1062
-
NOTE: The Bedrock backend needs curl >= 8.5 in order for the sigv4 signing to work properly,
1063
-
https://github.com/curl/curl/issues/11794
1066
+
NOTE: The Bedrock backend needs curl >= 8.5 in order for the sigv4 signing to work properly, https://github.com/curl/curl/issues/11794
1064
1067
1065
1068
An error will be signalled if ~gptel-curl~ is ~NIL~.
1066
1069
@@ -1082,7 +1085,9 @@ The above code makes the backend available to select. If you want it to be the
1082
1085
;; Model region for cross-region inference profiles. Required for models such
1083
1086
;; as Claude without on-demand throughput support. One of 'apac, 'eu or 'us.
0 commit comments