Fix agent iam_role implied agentic tool calling

resolves #4193
contrib: @bechir2000
This commit is contained in:
timothycarambat 2025-07-31 09:56:08 -07:00
parent ea5f66978b
commit 4b7932f9e1

View File

@ -51,9 +51,9 @@ class AWSBedrockProvider extends InheritMultiple([Provider, UnTooled]) {
// IAM role is used for long-term credentials implied by system process // IAM role is used for long-term credentials implied by system process
// is filled by the AWS SDK automatically if we pass in no credentials // is filled by the AWS SDK automatically if we pass in no credentials
case "iam_role": case "iam_role":
return {}; return undefined;
default: default:
return {}; return undefined;
} }
} }