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
Copy file name to clipboardExpand all lines: libs/agno/agno/models/aws/bedrock.py
+22-11Lines changed: 22 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -32,12 +32,20 @@ class AwsBedrock(Model):
32
32
2. Or provide a boto3 Session object
33
33
34
34
Not all Bedrock models support all features. See this documentation for more information: https://docs.aws.amazon.com/bedrock/latest/userguide/conversation-inference-supported-models-features.html
35
+
36
+
Args:
37
+
aws_region (Optional[str]): The AWS region to use.
38
+
aws_access_key_id (Optional[str]): The AWS access key ID to use.
39
+
aws_secret_access_key (Optional[str]): The AWS secret access key to use.
40
+
aws_sso_auth (Optional[str]): Removes the need for an access and secret access key by leveraging the current profile's authentication
41
+
session (Optional[Session]): A boto3 Session object to use for authentication.
0 commit comments