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
/** API Client for interfacing with the Anthropic Bedrock API. */
@@ -24,6 +25,7 @@ export class AnthropicBedrock extends Core.APIClient {
24
25
awsAccessKey: string|null;
25
26
awsRegion: string;
26
27
awsSessionToken: string|null;
28
+
skipAuth: boolean=false;
27
29
28
30
private_options: ClientOptions;
29
31
@@ -41,6 +43,7 @@ export class AnthropicBedrock extends Core.APIClient {
41
43
* @param {number} [opts.maxRetries=2] - The maximum number of times the client will retry a request.
42
44
* @param {Core.Headers} opts.defaultHeaders - Default headers to include with every request to the API.
43
45
* @param {Core.DefaultQuery} opts.defaultQuery - Default query parameters to include with every request to the API.
46
+
* @param {boolean} [opts.skipAuth=false] - Skip authentication for this request. This is useful if you have an internal proxy that handles authentication for you.
0 commit comments