Agents for Amazon Bedrock

2024/04/22 - Agents for Amazon Bedrock - 3 updated api methods

Changes  Releasing the support for simplified configuration and return of control

CreateAgentActionGroup (updated) Link ¶
Changes (request, response)
Request
{'actionGroupExecutor': {'customControl': 'RETURN_CONTROL'},
 'functionSchema': {'functions': [{'description': 'string',
                                   'name': 'string',
                                   'parameters': {'string': {'description': 'string',
                                                             'required': 'boolean',
                                                             'type': 'string | '
                                                                     'number | '
                                                                     'integer '
                                                                     '| '
                                                                     'boolean '
                                                                     '| '
                                                                     'array'}}}]}}
Response
{'agentActionGroup': {'actionGroupExecutor': {'customControl': 'RETURN_CONTROL'},
                      'functionSchema': {'functions': [{'description': 'string',
                                                        'name': 'string',
                                                        'parameters': {'string': {'description': 'string',
                                                                                  'required': 'boolean',
                                                                                  'type': 'string '
                                                                                          '| '
                                                                                          'number '
                                                                                          '| '
                                                                                          'integer '
                                                                                          '| '
                                                                                          'boolean '
                                                                                          '| '
                                                                                          'array'}}}]}}}

Creates an action group for an agent. An action group represents the actions that an agent can carry out for the customer by defining the APIs that an agent can call and the logic for calling them.

To allow your agent to request the user for additional information when trying to complete a task, add an action group with the parentActionGroupSignature field set to AMAZON.UserInput. You must leave the description, apiSchema, and actionGroupExecutor fields blank for this action group. During orchestration, if your agent determines that it needs to invoke an API in an action group, but doesn't have enough information to complete the API request, it will invoke this action group instead and return an Observation reprompting the user for more information.

See also: AWS API Documentation

Request Syntax

client.create_agent_action_group(
    actionGroupExecutor={
        'customControl': 'RETURN_CONTROL',
        'lambda': 'string'
    },
    actionGroupName='string',
    actionGroupState='ENABLED'|'DISABLED',
    agentId='string',
    agentVersion='string',
    apiSchema={
        'payload': 'string',
        's3': {
            's3BucketName': 'string',
            's3ObjectKey': 'string'
        }
    },
    clientToken='string',
    description='string',
    functionSchema={
        'functions': [
            {
                'description': 'string',
                'name': 'string',
                'parameters': {
                    'string': {
                        'description': 'string',
                        'required': True|False,
                        'type': 'string'|'number'|'integer'|'boolean'|'array'
                    }
                }
            },
        ]
    },
    parentActionGroupSignature='AMAZON.UserInput'
)
type actionGroupExecutor:

dict

param actionGroupExecutor:

The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

  • customControl (string) --

    To return the action group invocation results directly in the InvokeAgent response, specify RETURN_CONTROL.

  • lambda (string) --

    The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

type actionGroupName:

string

param actionGroupName:

[REQUIRED]

The name to give the action group.

type actionGroupState:

string

param actionGroupState:

Specifies whether the action group is available for the agent to invoke or not when sending an InvokeAgent request.

type agentId:

string

param agentId:

[REQUIRED]

The unique identifier of the agent for which to create the action group.

type agentVersion:

string

param agentVersion:

[REQUIRED]

The version of the agent for which to create the action group.

type apiSchema:

dict

param apiSchema:

Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema. For more information, see Action group OpenAPI schemas.

  • payload (string) --

    The JSON or YAML-formatted payload defining the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas.

  • s3 (dict) --

    Contains details about the S3 object containing the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas.

    • s3BucketName (string) --

      The name of the S3 bucket.

    • s3ObjectKey (string) --

      The S3 object key containing the resource.

type clientToken:

string

param clientToken:

A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

This field is autopopulated if not provided.

type description:

string

param description:

A description of the action group.

type functionSchema:

dict

param functionSchema:

Contains details about the function schema for the action group or the JSON or YAML-formatted payload defining the schema.

type parentActionGroupSignature:

string

param parentActionGroupSignature:

To allow your agent to request the user for additional information when trying to complete a task, set this field to AMAZON.UserInput. You must leave the description, apiSchema, and actionGroupExecutor fields blank for this action group.

During orchestration, if your agent determines that it needs to invoke an API in an action group, but doesn't have enough information to complete the API request, it will invoke this action group instead and return an Observation reprompting the user for more information.

rtype:

dict

returns:

Response Syntax

{
    'agentActionGroup': {
        'actionGroupExecutor': {
            'customControl': 'RETURN_CONTROL',
            'lambda': 'string'
        },
        'actionGroupId': 'string',
        'actionGroupName': 'string',
        'actionGroupState': 'ENABLED'|'DISABLED',
        'agentId': 'string',
        'agentVersion': 'string',
        'apiSchema': {
            'payload': 'string',
            's3': {
                's3BucketName': 'string',
                's3ObjectKey': 'string'
            }
        },
        'clientToken': 'string',
        'createdAt': datetime(2015, 1, 1),
        'description': 'string',
        'functionSchema': {
            'functions': [
                {
                    'description': 'string',
                    'name': 'string',
                    'parameters': {
                        'string': {
                            'description': 'string',
                            'required': True|False,
                            'type': 'string'|'number'|'integer'|'boolean'|'array'
                        }
                    }
                },
            ]
        },
        'parentActionSignature': 'AMAZON.UserInput',
        'updatedAt': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) --

    • agentActionGroup (dict) --

      Contains details about the action group that was created.

      • actionGroupExecutor (dict) --

        The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

        • customControl (string) --

          To return the action group invocation results directly in the InvokeAgent response, specify RETURN_CONTROL.

        • lambda (string) --

          The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

      • actionGroupId (string) --

        The unique identifier of the action group.

      • actionGroupName (string) --

        The name of the action group.

      • actionGroupState (string) --

        Specifies whether the action group is available for the agent to invoke or not when sending an InvokeAgent request.

      • agentId (string) --

        The unique identifier of the agent to which the action group belongs.

      • agentVersion (string) --

        The version of the agent to which the action group belongs.

      • apiSchema (dict) --

        Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema. For more information, see Action group OpenAPI schemas.

        • payload (string) --

          The JSON or YAML-formatted payload defining the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas.

        • s3 (dict) --

          Contains details about the S3 object containing the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas.

          • s3BucketName (string) --

            The name of the S3 bucket.

          • s3ObjectKey (string) --

            The S3 object key containing the resource.

      • clientToken (string) --

        A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

      • createdAt (datetime) --

        The time at which the action group was created.

      • description (string) --

        The description of the action group.

      • functionSchema (dict) --

        Defines functions that each define parameters that the agent needs to invoke from the user. Each function represents an action in an action group.

      • parentActionSignature (string) --

        If this field is set as AMAZON.UserInput, the agent can request the user for additional information when trying to complete a task. The description, apiSchema, and actionGroupExecutor fields must be blank for this action group.

        During orchestration, if the agent determines that it needs to invoke an API in an action group, but doesn't have enough information to complete the API request, it will invoke this action group instead and return an Observation reprompting the user for more information.

      • updatedAt (datetime) --

        The time at which the action group was last updated.

GetAgentActionGroup (updated) Link ¶
Changes (response)
{'agentActionGroup': {'actionGroupExecutor': {'customControl': 'RETURN_CONTROL'},
                      'functionSchema': {'functions': [{'description': 'string',
                                                        'name': 'string',
                                                        'parameters': {'string': {'description': 'string',
                                                                                  'required': 'boolean',
                                                                                  'type': 'string '
                                                                                          '| '
                                                                                          'number '
                                                                                          '| '
                                                                                          'integer '
                                                                                          '| '
                                                                                          'boolean '
                                                                                          '| '
                                                                                          'array'}}}]}}}

Gets information about an action group for an agent.

See also: AWS API Documentation

Request Syntax

client.get_agent_action_group(
    actionGroupId='string',
    agentId='string',
    agentVersion='string'
)
type actionGroupId:

string

param actionGroupId:

[REQUIRED]

The unique identifier of the action group for which to get information.

type agentId:

string

param agentId:

[REQUIRED]

The unique identifier of the agent that the action group belongs to.

type agentVersion:

string

param agentVersion:

[REQUIRED]

The version of the agent that the action group belongs to.

rtype:

dict

returns:

Response Syntax

{
    'agentActionGroup': {
        'actionGroupExecutor': {
            'customControl': 'RETURN_CONTROL',
            'lambda': 'string'
        },
        'actionGroupId': 'string',
        'actionGroupName': 'string',
        'actionGroupState': 'ENABLED'|'DISABLED',
        'agentId': 'string',
        'agentVersion': 'string',
        'apiSchema': {
            'payload': 'string',
            's3': {
                's3BucketName': 'string',
                's3ObjectKey': 'string'
            }
        },
        'clientToken': 'string',
        'createdAt': datetime(2015, 1, 1),
        'description': 'string',
        'functionSchema': {
            'functions': [
                {
                    'description': 'string',
                    'name': 'string',
                    'parameters': {
                        'string': {
                            'description': 'string',
                            'required': True|False,
                            'type': 'string'|'number'|'integer'|'boolean'|'array'
                        }
                    }
                },
            ]
        },
        'parentActionSignature': 'AMAZON.UserInput',
        'updatedAt': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) --

    • agentActionGroup (dict) --

      Contains details about the action group.

      • actionGroupExecutor (dict) --

        The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

        • customControl (string) --

          To return the action group invocation results directly in the InvokeAgent response, specify RETURN_CONTROL.

        • lambda (string) --

          The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

      • actionGroupId (string) --

        The unique identifier of the action group.

      • actionGroupName (string) --

        The name of the action group.

      • actionGroupState (string) --

        Specifies whether the action group is available for the agent to invoke or not when sending an InvokeAgent request.

      • agentId (string) --

        The unique identifier of the agent to which the action group belongs.

      • agentVersion (string) --

        The version of the agent to which the action group belongs.

      • apiSchema (dict) --

        Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema. For more information, see Action group OpenAPI schemas.

        • payload (string) --

          The JSON or YAML-formatted payload defining the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas.

        • s3 (dict) --

          Contains details about the S3 object containing the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas.

          • s3BucketName (string) --

            The name of the S3 bucket.

          • s3ObjectKey (string) --

            The S3 object key containing the resource.

      • clientToken (string) --

        A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

      • createdAt (datetime) --

        The time at which the action group was created.

      • description (string) --

        The description of the action group.

      • functionSchema (dict) --

        Defines functions that each define parameters that the agent needs to invoke from the user. Each function represents an action in an action group.

      • parentActionSignature (string) --

        If this field is set as AMAZON.UserInput, the agent can request the user for additional information when trying to complete a task. The description, apiSchema, and actionGroupExecutor fields must be blank for this action group.

        During orchestration, if the agent determines that it needs to invoke an API in an action group, but doesn't have enough information to complete the API request, it will invoke this action group instead and return an Observation reprompting the user for more information.

      • updatedAt (datetime) --

        The time at which the action group was last updated.

UpdateAgentActionGroup (updated) Link ¶
Changes (request, response)
Request
{'actionGroupExecutor': {'customControl': 'RETURN_CONTROL'},
 'functionSchema': {'functions': [{'description': 'string',
                                   'name': 'string',
                                   'parameters': {'string': {'description': 'string',
                                                             'required': 'boolean',
                                                             'type': 'string | '
                                                                     'number | '
                                                                     'integer '
                                                                     '| '
                                                                     'boolean '
                                                                     '| '
                                                                     'array'}}}]}}
Response
{'agentActionGroup': {'actionGroupExecutor': {'customControl': 'RETURN_CONTROL'},
                      'functionSchema': {'functions': [{'description': 'string',
                                                        'name': 'string',
                                                        'parameters': {'string': {'description': 'string',
                                                                                  'required': 'boolean',
                                                                                  'type': 'string '
                                                                                          '| '
                                                                                          'number '
                                                                                          '| '
                                                                                          'integer '
                                                                                          '| '
                                                                                          'boolean '
                                                                                          '| '
                                                                                          'array'}}}]}}}

Updates the configuration for an action group for an agent.

See also: AWS API Documentation

Request Syntax

client.update_agent_action_group(
    actionGroupExecutor={
        'customControl': 'RETURN_CONTROL',
        'lambda': 'string'
    },
    actionGroupId='string',
    actionGroupName='string',
    actionGroupState='ENABLED'|'DISABLED',
    agentId='string',
    agentVersion='string',
    apiSchema={
        'payload': 'string',
        's3': {
            's3BucketName': 'string',
            's3ObjectKey': 'string'
        }
    },
    description='string',
    functionSchema={
        'functions': [
            {
                'description': 'string',
                'name': 'string',
                'parameters': {
                    'string': {
                        'description': 'string',
                        'required': True|False,
                        'type': 'string'|'number'|'integer'|'boolean'|'array'
                    }
                }
            },
        ]
    },
    parentActionGroupSignature='AMAZON.UserInput'
)
type actionGroupExecutor:

dict

param actionGroupExecutor:

The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

  • customControl (string) --

    To return the action group invocation results directly in the InvokeAgent response, specify RETURN_CONTROL.

  • lambda (string) --

    The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

type actionGroupId:

string

param actionGroupId:

[REQUIRED]

The unique identifier of the action group.

type actionGroupName:

string

param actionGroupName:

[REQUIRED]

Specifies a new name for the action group.

type actionGroupState:

string

param actionGroupState:

Specifies whether the action group is available for the agent to invoke or not when sending an InvokeAgent request.

type agentId:

string

param agentId:

[REQUIRED]

The unique identifier of the agent for which to update the action group.

type agentVersion:

string

param agentVersion:

[REQUIRED]

The unique identifier of the agent version for which to update the action group.

type apiSchema:

dict

param apiSchema:

Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema. For more information, see Action group OpenAPI schemas.

  • payload (string) --

    The JSON or YAML-formatted payload defining the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas.

  • s3 (dict) --

    Contains details about the S3 object containing the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas.

    • s3BucketName (string) --

      The name of the S3 bucket.

    • s3ObjectKey (string) --

      The S3 object key containing the resource.

type description:

string

param description:

Specifies a new name for the action group.

type functionSchema:

dict

param functionSchema:

Contains details about the function schema for the action group or the JSON or YAML-formatted payload defining the schema.

type parentActionGroupSignature:

string

param parentActionGroupSignature:

To allow your agent to request the user for additional information when trying to complete a task, set this field to AMAZON.UserInput. You must leave the description, apiSchema, and actionGroupExecutor fields blank for this action group.

During orchestration, if your agent determines that it needs to invoke an API in an action group, but doesn't have enough information to complete the API request, it will invoke this action group instead and return an Observation reprompting the user for more information.

rtype:

dict

returns:

Response Syntax

{
    'agentActionGroup': {
        'actionGroupExecutor': {
            'customControl': 'RETURN_CONTROL',
            'lambda': 'string'
        },
        'actionGroupId': 'string',
        'actionGroupName': 'string',
        'actionGroupState': 'ENABLED'|'DISABLED',
        'agentId': 'string',
        'agentVersion': 'string',
        'apiSchema': {
            'payload': 'string',
            's3': {
                's3BucketName': 'string',
                's3ObjectKey': 'string'
            }
        },
        'clientToken': 'string',
        'createdAt': datetime(2015, 1, 1),
        'description': 'string',
        'functionSchema': {
            'functions': [
                {
                    'description': 'string',
                    'name': 'string',
                    'parameters': {
                        'string': {
                            'description': 'string',
                            'required': True|False,
                            'type': 'string'|'number'|'integer'|'boolean'|'array'
                        }
                    }
                },
            ]
        },
        'parentActionSignature': 'AMAZON.UserInput',
        'updatedAt': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) --

    • agentActionGroup (dict) --

      Contains details about the action group that was updated.

      • actionGroupExecutor (dict) --

        The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

        • customControl (string) --

          To return the action group invocation results directly in the InvokeAgent response, specify RETURN_CONTROL.

        • lambda (string) --

          The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

      • actionGroupId (string) --

        The unique identifier of the action group.

      • actionGroupName (string) --

        The name of the action group.

      • actionGroupState (string) --

        Specifies whether the action group is available for the agent to invoke or not when sending an InvokeAgent request.

      • agentId (string) --

        The unique identifier of the agent to which the action group belongs.

      • agentVersion (string) --

        The version of the agent to which the action group belongs.

      • apiSchema (dict) --

        Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema. For more information, see Action group OpenAPI schemas.

        • payload (string) --

          The JSON or YAML-formatted payload defining the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas.

        • s3 (dict) --

          Contains details about the S3 object containing the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas.

          • s3BucketName (string) --

            The name of the S3 bucket.

          • s3ObjectKey (string) --

            The S3 object key containing the resource.

      • clientToken (string) --

        A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

      • createdAt (datetime) --

        The time at which the action group was created.

      • description (string) --

        The description of the action group.

      • functionSchema (dict) --

        Defines functions that each define parameters that the agent needs to invoke from the user. Each function represents an action in an action group.

      • parentActionSignature (string) --

        If this field is set as AMAZON.UserInput, the agent can request the user for additional information when trying to complete a task. The description, apiSchema, and actionGroupExecutor fields must be blank for this action group.

        During orchestration, if the agent determines that it needs to invoke an API in an action group, but doesn't have enough information to complete the API request, it will invoke this action group instead and return an Observation reprompting the user for more information.

      • updatedAt (datetime) --

        The time at which the action group was last updated.