bedrock-agentcore-starter-toolkit 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of bedrock-agentcore-starter-toolkit might be problematic. Click here for more details.

Files changed (27) hide show
  1. bedrock_agentcore_starter_toolkit/cli/cli.py +3 -10
  2. bedrock_agentcore_starter_toolkit/cli/runtime/commands.py +52 -4
  3. bedrock_agentcore_starter_toolkit/cli/runtime/configuration_manager.py +20 -11
  4. bedrock_agentcore_starter_toolkit/notebook/runtime/bedrock_agentcore.py +53 -10
  5. bedrock_agentcore_starter_toolkit/operations/gateway/README.md +6 -6
  6. bedrock_agentcore_starter_toolkit/operations/gateway/create_role.py +11 -10
  7. bedrock_agentcore_starter_toolkit/operations/runtime/configure.py +21 -7
  8. bedrock_agentcore_starter_toolkit/operations/runtime/create_role.py +404 -0
  9. bedrock_agentcore_starter_toolkit/operations/runtime/launch.py +329 -53
  10. bedrock_agentcore_starter_toolkit/operations/runtime/models.py +4 -1
  11. bedrock_agentcore_starter_toolkit/services/codebuild.py +332 -0
  12. bedrock_agentcore_starter_toolkit/services/ecr.py +29 -0
  13. bedrock_agentcore_starter_toolkit/services/runtime.py +91 -1
  14. bedrock_agentcore_starter_toolkit/utils/logging_config.py +72 -0
  15. bedrock_agentcore_starter_toolkit/utils/runtime/entrypoint.py +3 -3
  16. bedrock_agentcore_starter_toolkit/utils/runtime/policy_template.py +74 -0
  17. bedrock_agentcore_starter_toolkit/utils/runtime/schema.py +12 -2
  18. bedrock_agentcore_starter_toolkit/utils/runtime/templates/Dockerfile.j2 +10 -25
  19. bedrock_agentcore_starter_toolkit/utils/runtime/templates/dockerignore.template +0 -1
  20. bedrock_agentcore_starter_toolkit/utils/runtime/templates/execution_role_policy.json.j2 +98 -0
  21. bedrock_agentcore_starter_toolkit/utils/runtime/templates/execution_role_trust_policy.json.j2 +21 -0
  22. {bedrock_agentcore_starter_toolkit-0.1.0.dist-info → bedrock_agentcore_starter_toolkit-0.1.1.dist-info}/METADATA +7 -7
  23. {bedrock_agentcore_starter_toolkit-0.1.0.dist-info → bedrock_agentcore_starter_toolkit-0.1.1.dist-info}/RECORD +27 -21
  24. {bedrock_agentcore_starter_toolkit-0.1.0.dist-info → bedrock_agentcore_starter_toolkit-0.1.1.dist-info}/WHEEL +0 -0
  25. {bedrock_agentcore_starter_toolkit-0.1.0.dist-info → bedrock_agentcore_starter_toolkit-0.1.1.dist-info}/entry_points.txt +0 -0
  26. {bedrock_agentcore_starter_toolkit-0.1.0.dist-info → bedrock_agentcore_starter_toolkit-0.1.1.dist-info}/licenses/LICENSE.txt +0 -0
  27. {bedrock_agentcore_starter_toolkit-0.1.0.dist-info → bedrock_agentcore_starter_toolkit-0.1.1.dist-info}/licenses/NOTICE.txt +0 -0
@@ -35,6 +35,7 @@ class AWSConfig(BaseModel):
35
35
  """AWS-specific configuration."""
36
36
 
37
37
  execution_role: Optional[str] = Field(default=None, description="AWS IAM execution role ARN")
38
+ execution_role_auto_create: bool = Field(default=False, description="Whether to auto-create execution role")
38
39
  account: Optional[str] = Field(default=None, description="AWS account ID")
39
40
  region: Optional[str] = Field(default=None, description="AWS region")
40
41
  ecr_repository: Optional[str] = Field(default=None, description="ECR repository URI")
@@ -53,6 +54,14 @@ class AWSConfig(BaseModel):
53
54
  return v
54
55
 
55
56
 
57
+ class CodeBuildConfig(BaseModel):
58
+ """CodeBuild deployment information."""
59
+
60
+ project_name: Optional[str] = Field(default=None, description="CodeBuild project name")
61
+ execution_role: Optional[str] = Field(default=None, description="CodeBuild execution role ARN")
62
+ source_bucket: Optional[str] = Field(default=None, description="S3 source bucket name")
63
+
64
+
56
65
  class BedrockAgentCoreDeploymentInfo(BaseModel):
57
66
  """BedrockAgentCore deployment information."""
58
67
 
@@ -70,6 +79,7 @@ class BedrockAgentCoreAgentSchema(BaseModel):
70
79
  container_runtime: str = Field(default="docker", description="Container runtime to use")
71
80
  aws: AWSConfig = Field(default_factory=AWSConfig)
72
81
  bedrock_agentcore: BedrockAgentCoreDeploymentInfo = Field(default_factory=BedrockAgentCoreDeploymentInfo)
82
+ codebuild: CodeBuildConfig = Field(default_factory=CodeBuildConfig)
73
83
  authorizer_configuration: Optional[dict] = Field(default=None, description="JWT authorizer configuration")
74
84
  oauth_configuration: Optional[dict] = Field(default=None, description="Oauth configuration")
75
85
 
@@ -96,8 +106,8 @@ class BedrockAgentCoreAgentSchema(BaseModel):
96
106
 
97
107
  # AWS fields required for cloud deployment
98
108
  if not for_local:
99
- if not self.aws.execution_role:
100
- errors.append("Missing 'aws.execution_role' for cloud deployment")
109
+ if not self.aws.execution_role and not self.aws.execution_role_auto_create:
110
+ errors.append("Missing 'aws.execution_role' for cloud deployment (or enable auto-creation)")
101
111
  if not self.aws.region:
102
112
  errors.append("Missing 'aws.region' for cloud deployment")
103
113
  if not self.aws.account:
@@ -1,35 +1,20 @@
1
1
  FROM public.ecr.aws/docker/library/python:{{ python_version }}-slim
2
2
  WORKDIR /app
3
3
 
4
- # Install system dependencies if needed
5
- {% if system_packages %}
6
- RUN apt-get update && apt-get install -y \
7
- {% for package in system_packages %}{{ package }} {% endfor %}\
8
- && rm -rf /var/lib/apt/lists/*
9
- {% endif %}
10
-
11
- # Copy entire project (respecting .dockerignore)
12
- COPY . .
13
-
14
- # Install dependencies
15
- {% if has_current_package %}
16
- # Install current directory as package
17
- RUN python -m pip install --no-cache-dir -e .
18
- {% endif %}
19
-
20
4
  {% if dependencies_file %}
21
5
  {% if dependencies_install_path %}
6
+ COPY {{ dependencies_install_path }} {{ dependencies_install_path }}
22
7
  # Install from pyproject.toml directory
23
- RUN python -m pip install --no-cache-dir {{ dependencies_install_path }}
8
+ RUN pip install {{ dependencies_install_path }}
24
9
  {% else %}
10
+ COPY {{ dependencies_file }} {{ dependencies_file }}
25
11
  # Install from requirements file
26
- RUN python -m pip install --no-cache-dir -r {{ dependencies_file }}
12
+ RUN pip install -r {{ dependencies_file }}
27
13
  {% endif %}
28
14
  {% endif %}
29
15
 
30
- {% if has_wheelhouse %}
31
- # Install from wheelhouse
32
- RUN python -m pip install --no-cache-dir --force-reinstall ./wheelhouse/*.whl
16
+ {% if observability_enabled %}
17
+ RUN pip install aws-opentelemetry-distro>=0.10.0
33
18
  {% endif %}
34
19
 
35
20
  # Set AWS region environment variable
@@ -41,15 +26,15 @@ ENV AWS_DEFAULT_REGION={{ aws_region }}
41
26
  # Signal that this is running in Docker for host binding logic
42
27
  ENV DOCKER_CONTAINER=1
43
28
 
44
- {% if observability_enabled %}
45
- RUN python -m pip install aws_opentelemetry_distro_genai_beta>=0.1.2
46
- {% endif %}
47
-
48
29
  # Create non-root user
49
30
  RUN useradd -m -u 1000 bedrock_agentcore
50
31
  USER bedrock_agentcore
51
32
 
52
33
  EXPOSE 8080
34
+ EXPOSE 8000
35
+
36
+ # Copy entire project (respecting .dockerignore)
37
+ COPY . .
53
38
 
54
39
  # Use the full module path
55
40
  {% if observability_enabled %}
@@ -62,7 +62,6 @@ tests/
62
62
 
63
63
  # Bedrock AgentCore specific - keep config but exclude runtime files
64
64
  .bedrock_agentcore.yaml
65
- Dockerfile
66
65
  .dockerignore
67
66
 
68
67
  # Keep wheelhouse for offline installations
@@ -0,0 +1,98 @@
1
+ {
2
+ "Version": "2012-10-17",
3
+ "Statement": [
4
+ {
5
+ "Sid": "ECRImageAccess",
6
+ "Effect": "Allow",
7
+ "Action": [
8
+ "ecr:BatchGetImage",
9
+ "ecr:GetDownloadUrlForLayer"
10
+ ],
11
+ "Resource": [
12
+ "arn:aws:ecr:{{ region }}:{{ account_id }}:repository/*"
13
+ ]
14
+ },
15
+ {
16
+ "Effect": "Allow",
17
+ "Action": [
18
+ "logs:DescribeLogStreams",
19
+ "logs:CreateLogGroup"
20
+ ],
21
+ "Resource": [
22
+ "arn:aws:logs:{{ region }}:{{ account_id }}:log-group:/aws/bedrock-agentcore/runtimes/*"
23
+ ]
24
+ },
25
+ {
26
+ "Effect": "Allow",
27
+ "Action": [
28
+ "logs:DescribeLogGroups"
29
+ ],
30
+ "Resource": [
31
+ "arn:aws:logs:{{ region }}:{{ account_id }}:log-group:*"
32
+ ]
33
+ },
34
+ {
35
+ "Effect": "Allow",
36
+ "Action": [
37
+ "logs:CreateLogStream",
38
+ "logs:PutLogEvents"
39
+ ],
40
+ "Resource": [
41
+ "arn:aws:logs:{{ region }}:{{ account_id }}:log-group:/aws/bedrock-agentcore/runtimes/*:log-stream:*"
42
+ ]
43
+ },
44
+ {
45
+ "Sid": "ECRTokenAccess",
46
+ "Effect": "Allow",
47
+ "Action": [
48
+ "ecr:GetAuthorizationToken"
49
+ ],
50
+ "Resource": "*"
51
+ },
52
+ {
53
+ "Effect": "Allow",
54
+ "Action": [
55
+ "xray:PutTraceSegments",
56
+ "xray:PutTelemetryRecords",
57
+ "xray:GetSamplingRules",
58
+ "xray:GetSamplingTargets"
59
+ ],
60
+ "Resource": ["*"]
61
+ },
62
+ {
63
+ "Effect": "Allow",
64
+ "Resource": "*",
65
+ "Action": "cloudwatch:PutMetricData",
66
+ "Condition": {
67
+ "StringEquals": {
68
+ "cloudwatch:namespace": "bedrock-agentcore"
69
+ }
70
+ }
71
+ },
72
+ {
73
+ "Sid": "GetAgentAccessToken",
74
+ "Effect": "Allow",
75
+ "Action": [
76
+ "bedrock-agentcore:GetWorkloadAccessToken",
77
+ "bedrock-agentcore:GetWorkloadAccessTokenForJWT",
78
+ "bedrock-agentcore:GetWorkloadAccessTokenForUserId"
79
+ ],
80
+ "Resource": [
81
+ "arn:aws:bedrock-agentcore:{{ region }}:{{ account_id }}:workload-identity-directory/default",
82
+ "arn:aws:bedrock-agentcore:{{ region }}:{{ account_id }}:workload-identity-directory/default/workload-identity/{{ agent_name }}-*"
83
+ ]
84
+ },
85
+ {
86
+ "Sid": "BedrockModelInvocation",
87
+ "Effect": "Allow",
88
+ "Action": [
89
+ "bedrock:InvokeModel",
90
+ "bedrock:InvokeModelWithResponseStream"
91
+ ],
92
+ "Resource": [
93
+ "arn:aws:bedrock:*::foundation-model/*",
94
+ "arn:aws:bedrock:{{ region }}:{{ account_id }}:*"
95
+ ]
96
+ }
97
+ ]
98
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "Version": "2012-10-17",
3
+ "Statement": [
4
+ {
5
+ "Sid": "AssumeRolePolicy",
6
+ "Effect": "Allow",
7
+ "Principal": {
8
+ "Service": "bedrock-agentcore.amazonaws.com"
9
+ },
10
+ "Action": "sts:AssumeRole",
11
+ "Condition": {
12
+ "StringEquals": {
13
+ "aws:SourceAccount": "{{ account_id }}"
14
+ },
15
+ "ArnLike": {
16
+ "aws:SourceArn": "arn:aws:bedrock-agentcore:{{ region }}:{{ account_id }}:*"
17
+ }
18
+ }
19
+ }
20
+ ]
21
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bedrock-agentcore-starter-toolkit
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A starter toolkit for using Bedrock AgentCore
5
5
  Project-URL: Homepage, https://github.com/aws/bedrock-agentcore-starter-toolkit
6
6
  Project-URL: Bug Tracker, https://github.com/aws/bedrock-agentcore-starter-toolkit/issues
@@ -22,8 +22,8 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
22
22
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
23
  Requires-Python: >=3.10
24
24
  Requires-Dist: bedrock-agentcore>=0.1.0
25
- Requires-Dist: boto3>=1.35.0
26
- Requires-Dist: botocore>=1.35.0
25
+ Requires-Dist: boto3>=1.39.7
26
+ Requires-Dist: botocore>=1.39.7
27
27
  Requires-Dist: docstring-parser<1.0,>=0.15
28
28
  Requires-Dist: httpx>=0.28.1
29
29
  Requires-Dist: jinja2>=3.1.6
@@ -51,8 +51,8 @@ Description-Content-Type: text/markdown
51
51
  <div align="center">
52
52
  <a href="https://github.com/aws/bedrock-agentcore-starter-toolkit/graphs/commit-activity"><img alt="GitHub commit activity" src="https://img.shields.io/github/commit-activity/m/aws/bedrock-agentcore-starter-toolkit"/></a>
53
53
  <a href="https://github.com/aws/bedrock-agentcore-starter-toolkit/issues"><img alt="GitHub open issues" src="https://img.shields.io/github/issues/aws/bedrock-agentcore-starter-toolkit"/></a>
54
- <a href="https://github.com/aws/bedrock-agentcore-starter-toolkit/pulls"><img alt="GitHub open pull requests" src="https://img.shields.io/github/issues-pr/bedrock-agentcore-starter-toolkit"/></a>
55
- <a href="https://github.com/aws/bedrock-agentcore-starter-toolkit/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/aws/bedrock-agentcore-starter-toolkit"/></a>
54
+ <a href="https://github.com/aws/bedrock-agentcore-starter-toolkit/pulls"><img alt="GitHub open pull requests" src="https://img.shields.io/github/issues-pr/aws/bedrock-agentcore-starter-toolkit"/></a>
55
+ <a href="https://github.com/aws/bedrock-agentcore-starter-toolkit/blob/main/LICENSE.txt"><img alt="License" src="https://img.shields.io/github/license/aws/bedrock-agentcore-starter-toolkit"/></a>
56
56
  <a href="https://pypi.org/project/bedrock-agentcore-starter-toolkit"><img alt="PyPI version" src="https://img.shields.io/pypi/v/bedrock-agentcore-starter-toolkit"/></a>
57
57
  <a href="https://python.org"><img alt="Python versions" src="https://img.shields.io/pypi/pyversions/bedrock-agentcore-starter-toolkit"/></a>
58
58
  </div>
@@ -75,7 +75,7 @@ app = BedrockAgentCoreApp()
75
75
 
76
76
  @app.entrypoint
77
77
  def my_agent(request):
78
- # Your existing LangGraph, CrewAI, or custom agent logic
78
+ # Your existing Strands, LangGraph, CrewAI, or custom agent logic
79
79
  return process_with_your_framework(request.get("prompt"))
80
80
 
81
81
  app.run()
@@ -126,7 +126,7 @@ agentcore invoke '{"prompt": "Hello from Bedrock AgentCore!"}'
126
126
  Amazon Bedrock AgentCore enables you to deploy and operate highly effective agents securely, at scale using any framework and model. With AgentCore, developers can accelerate AI agents into production with enterprise-grade scale, reliability, and security. The platform provides:
127
127
 
128
128
  - **Composable Services**: Mix and match services to fit your needs
129
- - **Framework Flexibility**: Works with LangGraph, CrewAI, Strands, and more
129
+ - **Framework Flexibility**: Works with Strands, LangGraph, CrewAI, Strands, and more
130
130
  - **Any Model Support**: Not locked into specific models
131
131
  - **Enterprise Security**: Built-in identity, isolation, and access controls
132
132
 
@@ -1,41 +1,47 @@
1
1
  bedrock_agentcore_starter_toolkit/__init__.py,sha256=tN3-JWKvxk4ZSJQJIHQ4mMsDtt8J_cDCz-drcGU9USA,120
2
- bedrock_agentcore_starter_toolkit/cli/cli.py,sha256=HulrXGCj_C9aMVUkFbD2wk-l_LPImcpANikPugbtwsk,984
2
+ bedrock_agentcore_starter_toolkit/cli/cli.py,sha256=cZ9rQ5i46kq38W3U4HxWH6zKQGWl0nUZkUB6UHu19Bw,850
3
3
  bedrock_agentcore_starter_toolkit/cli/common.py,sha256=eVjxsQQC4RjvyZouRBTUBPjoWDSE4yQ6q9Mi6WsuDrc,1315
4
4
  bedrock_agentcore_starter_toolkit/cli/gateway/__init__.py,sha256=8IZ0kSe6Kz5s2j-SBsoc6qy04MbK85RMTQwZCiR2wmo,68
5
5
  bedrock_agentcore_starter_toolkit/cli/gateway/commands.py,sha256=3DuXCvqXlmHU2cmjGzDruyc2Fkrpgoi158myj0vc3nA,3265
6
6
  bedrock_agentcore_starter_toolkit/cli/runtime/__init__.py,sha256=0zKPPoYThoDIr3DZhIQJavq5nVTKRsgcE1s9--wx118,60
7
- bedrock_agentcore_starter_toolkit/cli/runtime/commands.py,sha256=FtxX5TmYOSWE_pgiCCchLze4qi4HBtk-RwxtVq9b598,26056
8
- bedrock_agentcore_starter_toolkit/cli/runtime/configuration_manager.py,sha256=uQrTemHGZY7l4llrYXtx8YIhMbjMXmq0LVFzg2yva2s,5321
7
+ bedrock_agentcore_starter_toolkit/cli/runtime/commands.py,sha256=LgErKPNHXqBavdz8Bqngc90tUEBSZg4V2oClqAw1G4w,28422
8
+ bedrock_agentcore_starter_toolkit/cli/runtime/configuration_manager.py,sha256=5TJK80uzA1ARh263smLfthw1t5Ona3bAtdO1pE7OfNo,5808
9
9
  bedrock_agentcore_starter_toolkit/notebook/__init__.py,sha256=wH1ZzIVKsKT_P0qX2kIIoyVxeHj8K40odfR1YI3McHw,129
10
10
  bedrock_agentcore_starter_toolkit/notebook/runtime/__init__.py,sha256=DoGfB_uGFLANJVE9rSZtTH3ymw76WBWmD9vORvBIdXs,66
11
- bedrock_agentcore_starter_toolkit/notebook/runtime/bedrock_agentcore.py,sha256=o_TDYqqX850wuoopLZWqisxwT2t101lHz2iIRpRBds8,7653
11
+ bedrock_agentcore_starter_toolkit/notebook/runtime/bedrock_agentcore.py,sha256=ep-NVyzjHJfPRhVeuJxpcIbg8FEYHMFF4BwudurjBe0,9738
12
12
  bedrock_agentcore_starter_toolkit/operations/__init__.py,sha256=L7sCNjfZviiVVoh2f3NEs2sbjNqFkmIRI3ZPYMMWMz0,51
13
- bedrock_agentcore_starter_toolkit/operations/gateway/README.md,sha256=1J6mSZnrb8mF0VX-A3-u_dnYf4hEoCESBekzW2pGwAQ,8192
13
+ bedrock_agentcore_starter_toolkit/operations/gateway/README.md,sha256=aJla3qAaZmM0b4t9q4lQYqfamAugU0FyyzsufFMRi_A,8192
14
14
  bedrock_agentcore_starter_toolkit/operations/gateway/__init__.py,sha256=5Qo1GeN-DghNp9g0coFUs7WpUJDboJoidOVs-5Co7fo,233
15
15
  bedrock_agentcore_starter_toolkit/operations/gateway/client.py,sha256=0Jot4RkhrM2nVKEEcOQH4ThkaXuR4UaHaVXD8vxpEpA,20030
16
16
  bedrock_agentcore_starter_toolkit/operations/gateway/constants.py,sha256=0_4J6BN4VAE4-XTQhPTEACkhilRrFqu_iKiuHSm2pYk,4610
17
17
  bedrock_agentcore_starter_toolkit/operations/gateway/create_lambda.py,sha256=MQsBJfUj26zBh7LqYWLoekHuvbAHIJE8qcXwrmJOhM0,2875
18
- bedrock_agentcore_starter_toolkit/operations/gateway/create_role.py,sha256=-uKdsiPhJn-Wbr64hF34yDwAElwFC5c4723scZRSTPU,3070
18
+ bedrock_agentcore_starter_toolkit/operations/gateway/create_role.py,sha256=a38JE28PbdRabskTgLXsiqHqWS1vt06jxEEGneYPO_g,3145
19
19
  bedrock_agentcore_starter_toolkit/operations/gateway/exceptions.py,sha256=WjsrE7lT2708CJniM_ISMzkfNX4IUteGgvOxleD9JZY,272
20
20
  bedrock_agentcore_starter_toolkit/operations/runtime/__init__.py,sha256=7ucAtIbabrDmEaHOfGqHtEr2CkQlEsb5O2tkHirXCqU,673
21
- bedrock_agentcore_starter_toolkit/operations/runtime/configure.py,sha256=9nQ_dqp2v-WlteHX36OZ_Az1_nIbTQNUznkGobizofg,8293
21
+ bedrock_agentcore_starter_toolkit/operations/runtime/configure.py,sha256=BIvFX5EF73X8VNOKQThsyYSWTWLDUkM4di8HW1MGVe8,8948
22
+ bedrock_agentcore_starter_toolkit/operations/runtime/create_role.py,sha256=5-BL_EA1LFy6vSTl5Rppj1et7Y0tuaB8C9-Ze4ESt1A,15952
22
23
  bedrock_agentcore_starter_toolkit/operations/runtime/invoke.py,sha256=klDICZq-EHcxDjJhb1oVa7-vuFUvq5-HioqWrk__H_E,4539
23
- bedrock_agentcore_starter_toolkit/operations/runtime/launch.py,sha256=s2v0mwuSa_3JQlkGhXTlk0VqM6RAwa-Xi8PvRpIqGIk,5426
24
- bedrock_agentcore_starter_toolkit/operations/runtime/models.py,sha256=eyPbjl_oqNIkEPDygbZ5rO2H1zXYg6wEbwdZNmoe5xA,3538
24
+ bedrock_agentcore_starter_toolkit/operations/runtime/launch.py,sha256=6zOt6BEd4rcQz57WIH9MtOqCBN0FEUfp7B68gjXV3jk,15940
25
+ bedrock_agentcore_starter_toolkit/operations/runtime/models.py,sha256=6xzNOTSeJj-9kXQKWOGECrBbYopHNNrZfUBsEvl1fNg,3683
25
26
  bedrock_agentcore_starter_toolkit/operations/runtime/status.py,sha256=tpOtzAq1S3z_7baxR_WOT8Avo3MtWKGpelVOOfb-uMA,2516
26
- bedrock_agentcore_starter_toolkit/services/ecr.py,sha256=9ot63TvIIMYdDmeQUrnO0ksbnL9bAZJb-VyUsQIcp7Y,1802
27
- bedrock_agentcore_starter_toolkit/services/runtime.py,sha256=v2LYFE5lKCip78bR8No6oB_St9qVQ7s_hnPAbzQGU68,13802
27
+ bedrock_agentcore_starter_toolkit/services/codebuild.py,sha256=gVYi8CKQwcpt567-qe1-GN5l3n0q3DSlU_dFwlBfy_4,13282
28
+ bedrock_agentcore_starter_toolkit/services/ecr.py,sha256=nW9wIZcXI6amZeLVSmM9F6awVBQP1-zrFXTozSNEDjo,2805
29
+ bedrock_agentcore_starter_toolkit/services/runtime.py,sha256=qL1kk3PL-e7ivArFbVdKyf9PKIPyor2hRdI7rc_Bmws,17214
28
30
  bedrock_agentcore_starter_toolkit/utils/endpoints.py,sha256=1gIDRd1oO1fymYpiedVit7m6zl5k6N8Ns9N-2ix7ZaE,1153
31
+ bedrock_agentcore_starter_toolkit/utils/logging_config.py,sha256=NtZDyndNKCAbz7jZ0leb13bb3UmjjRUTSVwI8MMlOfw,2191
29
32
  bedrock_agentcore_starter_toolkit/utils/runtime/config.py,sha256=qRQid59rD3zJ0d0hcBY4-8R52PNIWEIUt9iR3biuz_c,4495
30
33
  bedrock_agentcore_starter_toolkit/utils/runtime/container.py,sha256=6mYVA1YOTTWowBtCNdheLWTH1qL7t7Fd3ogloLIuvxQ,12829
31
- bedrock_agentcore_starter_toolkit/utils/runtime/entrypoint.py,sha256=xHKjpVulE8vHpBc3Yd99HPDyqmhuggEoaHvM-_VjGFc,7114
34
+ bedrock_agentcore_starter_toolkit/utils/runtime/entrypoint.py,sha256=FSZskJc0iZ27RsVbiL5-CYUi1fYdvIxVXUlR1IyvgiU,7144
32
35
  bedrock_agentcore_starter_toolkit/utils/runtime/logs.py,sha256=RUP5W2rbkXf33Kis4MnaI8xIjkpidO1at3kiXmxAw0I,1082
33
- bedrock_agentcore_starter_toolkit/utils/runtime/schema.py,sha256=uJSWeUMD7sIjeqpRtvhO4Y5LJG5B6lEOOeTcSWNFylc,5798
34
- bedrock_agentcore_starter_toolkit/utils/runtime/templates/Dockerfile.j2,sha256=1I5kC_uByMP7wMuZ3070kTk1kPv2ylC0N_J6bMUc_Lk,1617
35
- bedrock_agentcore_starter_toolkit/utils/runtime/templates/dockerignore.template,sha256=gzdegIgHoqrQM7AR5VJV5zqdB0GY-LE2jNdp27tDl64,702
36
- bedrock_agentcore_starter_toolkit-0.1.0.dist-info/METADATA,sha256=IHv2VAO79Dbcjz3GUQEJGQEMWJtZv6hseO1dG3I_G5w,6172
37
- bedrock_agentcore_starter_toolkit-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
38
- bedrock_agentcore_starter_toolkit-0.1.0.dist-info/entry_points.txt,sha256=Tf94DkUf2Tp8P7p8MEXLxre7A7Pp_XNukteiz0wHnk8,77
39
- bedrock_agentcore_starter_toolkit-0.1.0.dist-info/licenses/LICENSE.txt,sha256=nNPOMinitYdtfbhdQgsPgz1UowBznU6QVN3Xs0pSTKU,10768
40
- bedrock_agentcore_starter_toolkit-0.1.0.dist-info/licenses/NOTICE.txt,sha256=rkBsg8DbKqfIoQbveqX9foR4uJPUVAokbkr02pRPilE,8674
41
- bedrock_agentcore_starter_toolkit-0.1.0.dist-info/RECORD,,
36
+ bedrock_agentcore_starter_toolkit/utils/runtime/policy_template.py,sha256=CgER7YXPh0BpR6JcTcumDL_k8bhmfLSEok1sf09-31I,2054
37
+ bedrock_agentcore_starter_toolkit/utils/runtime/schema.py,sha256=gZ0zPvry-ZkXwqUEAy6Izz1RJvmZaXA6a2twnSdk1AY,6418
38
+ bedrock_agentcore_starter_toolkit/utils/runtime/templates/Dockerfile.j2,sha256=ti33aLVoqSfdbBUohxSK-ad1Qb_h7AoO_bkFcgik4UA,1166
39
+ bedrock_agentcore_starter_toolkit/utils/runtime/templates/dockerignore.template,sha256=b_70sBi0MwkTuA9TqxPqFcWK7TcmpaXBJ6M2Ipox65Q,691
40
+ bedrock_agentcore_starter_toolkit/utils/runtime/templates/execution_role_policy.json.j2,sha256=eFPp6sl7TS7p_FSdCqSMkXNZnDg-ahg9rhufT71A0SQ,2477
41
+ bedrock_agentcore_starter_toolkit/utils/runtime/templates/execution_role_trust_policy.json.j2,sha256=PPJF6Ofq70W5DUE0NlbmnZjw5RkgepPgkskxEgEG28o,473
42
+ bedrock_agentcore_starter_toolkit-0.1.1.dist-info/METADATA,sha256=7JZNYKxrMiGvKEtScwBnwGr3Du-MElHjtlUTHU8TKzI,6198
43
+ bedrock_agentcore_starter_toolkit-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
44
+ bedrock_agentcore_starter_toolkit-0.1.1.dist-info/entry_points.txt,sha256=Tf94DkUf2Tp8P7p8MEXLxre7A7Pp_XNukteiz0wHnk8,77
45
+ bedrock_agentcore_starter_toolkit-0.1.1.dist-info/licenses/LICENSE.txt,sha256=nNPOMinitYdtfbhdQgsPgz1UowBznU6QVN3Xs0pSTKU,10768
46
+ bedrock_agentcore_starter_toolkit-0.1.1.dist-info/licenses/NOTICE.txt,sha256=rkBsg8DbKqfIoQbveqX9foR4uJPUVAokbkr02pRPilE,8674
47
+ bedrock_agentcore_starter_toolkit-0.1.1.dist-info/RECORD,,