Skip to content

Latest commit

 

History

History
144 lines (93 loc) · 6.33 KB

Bedrock Model Deployment.md

File metadata and controls

144 lines (93 loc) · 6.33 KB

Bedrock Model Deployment

In this instruction, you will learn how to create Bedrock model in AWS and use it in AI DIAL config.

Refer to AWS Documentation to learn about this model.

Prerequisites

  • Active AWS account
  • Admin role at the account

Step 1: Configuring the AI Model

Request Access to Models

  1. In your AWS account, navigate to Services/Amazon Bedrock.
  2. In Amazon Bedrock, navigate to Model access and click the Manage model access button.
  3. In Base models, select models and click Save changes to request access to them. Note, it may take a few moment for an access to be granted. You may need to refresh the page to view the updated status.

To use Bedrock, it is necessary to seek permission to access Bedrock's foundation models. To accomplish this, ensuring the correct IAM Policies is crucial. You can find instructions on how to create IAM Policies in the AWS Documentation. Additionally, for specific models, you may be required to provide details about your use case before being able to request access. For more information, please refer to the Providers section on the Bedrock homepage.

Step 2: Get Access to AI Model

Create IAM Policy

IAM (Identity and Access Management) policies in AWS (Amazon Web Services) are a set of rules that define permissions for users, groups, and roles within an AWS account.

Refer to AWS Documentation to learn how to create a policy.

You can create your own IAM policy or use AWS-managed IAM policy AmazonBedrockFullAccess, which grants full access to the Bedrock service.

When using a custom policy, we recommend assigning permissions below to limit the scope of allowed interactions with models:

  • bedrock:GetFoundationModel
  • bedrock:ListFoundationModels
  • bedrock:InvokeModel
  • bedrock:InvokeModelWithResponseStream

Assign IAM Policy

You can assign an IAM Policy to a specific user, role or to the entire AWS Service Account.

Assign to User

IAM (Identity and Access Management) users in AWS (Amazon Web Services) are entities that represent individual people or applications that interact with AWS services and resources. IAM users have their own unique set of security credentials, which include an access key and secret access key.

Refer to AWS Documentation to learn how to create users.

  1. In your AWS account, navigate to IAM section.
  2. In the navigation tree, select Users and click Create user in the Users panel.

  1. On the Step 2 (Set Permissions), you can attach a Policy to the user.
  2. When the user is created, click your new user and navigate to the Security credentials tab where you can click Create access key to create a key pair for your user.
  3. For a new key pair, click Show to view and download a CSV file. Note, that once shown, the key pair will no longer be available for preview. Make sure you save a CSV file for future use.

Assign to Service Account

In case your cluster is located at AWS, the best practise for using Bedrock is to assign an IAM Policy to your Service Account. You can do this via IAM Roles.

Refer to AWS Documentation to learn how to configure an IAM roles for service accounts.

Step 3: Add Model to AI DIAL

To deploy a model to AI DIAL, it is necessary to add it to config and configure an adapter for it.

Add Model to AI DIAL Core Config

Add your model with its parameters in the models section.

Refer to AI DIAL Core Configuration to view an example.

Refer to Configure core config to view the configuration of AI DIAL core parameters in the helm-based installation.

Configure AI DIAL Adapter

To work with models, we use applications called Adapters. You can configure Bedrock Adapter via environment variables.

Refer to Adapter for Bedrock to view documentation for a Bedrock AI DIAL Adapter.

Use IAM User

In this scenario, provide the access key of your user via environment variables:

### examples of basic configurations of adapters ###

### ai-dial-adapter-bedrock configuration for IAM user###
bedrock:
  # -- Enable/disable ai-dial-adapter-bedrock
  enabled: true

  env:
    DEFAULT_REGION: "us-east-1"

  secrets:
    AWS_ACCESS_KEY_ID: "AKIAIOSFODNN7EXAMPLE"
    AWS_SECRET_ACCESS_KEY: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"

Use AWS Service Account

Before taking this step, configure IAM roles for service accounts.

In this scenario, provide the IAM Role that you have assigned to your AWS Service Account:

# --example of AI DIAL configuration for service account
bedrock:
 # -- Enable/disable ai-dial-adapter-bedrock
 enabled: true

 env:
   DEFAULT_REGION: "us-east-1"
 
 serviceAccount:
   create: true
   annotations:
     eks.amazonaws.com/role-arn: "arn:aws:iam::000001206603:role/role_name"