bedrock-agentcore-starter-toolkit 0.0.1__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 (50) hide show
  1. bedrock_agentcore_starter_toolkit/__init__.py +5 -0
  2. bedrock_agentcore_starter_toolkit/cli/cli.py +32 -0
  3. bedrock_agentcore_starter_toolkit/cli/common.py +44 -0
  4. bedrock_agentcore_starter_toolkit/cli/gateway/__init__.py +1 -0
  5. bedrock_agentcore_starter_toolkit/cli/gateway/commands.py +88 -0
  6. bedrock_agentcore_starter_toolkit/cli/runtime/__init__.py +1 -0
  7. bedrock_agentcore_starter_toolkit/cli/runtime/commands.py +651 -0
  8. bedrock_agentcore_starter_toolkit/cli/runtime/configuration_manager.py +133 -0
  9. bedrock_agentcore_starter_toolkit/notebook/__init__.py +5 -0
  10. bedrock_agentcore_starter_toolkit/notebook/runtime/__init__.py +1 -0
  11. bedrock_agentcore_starter_toolkit/notebook/runtime/bedrock_agentcore.py +239 -0
  12. bedrock_agentcore_starter_toolkit/operations/__init__.py +1 -0
  13. bedrock_agentcore_starter_toolkit/operations/gateway/README.md +277 -0
  14. bedrock_agentcore_starter_toolkit/operations/gateway/__init__.py +6 -0
  15. bedrock_agentcore_starter_toolkit/operations/gateway/client.py +456 -0
  16. bedrock_agentcore_starter_toolkit/operations/gateway/constants.py +152 -0
  17. bedrock_agentcore_starter_toolkit/operations/gateway/create_lambda.py +85 -0
  18. bedrock_agentcore_starter_toolkit/operations/gateway/create_role.py +90 -0
  19. bedrock_agentcore_starter_toolkit/operations/gateway/exceptions.py +13 -0
  20. bedrock_agentcore_starter_toolkit/operations/runtime/__init__.py +26 -0
  21. bedrock_agentcore_starter_toolkit/operations/runtime/configure.py +241 -0
  22. bedrock_agentcore_starter_toolkit/operations/runtime/create_role.py +404 -0
  23. bedrock_agentcore_starter_toolkit/operations/runtime/invoke.py +129 -0
  24. bedrock_agentcore_starter_toolkit/operations/runtime/launch.py +439 -0
  25. bedrock_agentcore_starter_toolkit/operations/runtime/models.py +79 -0
  26. bedrock_agentcore_starter_toolkit/operations/runtime/status.py +66 -0
  27. bedrock_agentcore_starter_toolkit/services/codebuild.py +332 -0
  28. bedrock_agentcore_starter_toolkit/services/ecr.py +84 -0
  29. bedrock_agentcore_starter_toolkit/services/runtime.py +473 -0
  30. bedrock_agentcore_starter_toolkit/utils/endpoints.py +32 -0
  31. bedrock_agentcore_starter_toolkit/utils/logging_config.py +72 -0
  32. bedrock_agentcore_starter_toolkit/utils/runtime/config.py +129 -0
  33. bedrock_agentcore_starter_toolkit/utils/runtime/container.py +310 -0
  34. bedrock_agentcore_starter_toolkit/utils/runtime/entrypoint.py +197 -0
  35. bedrock_agentcore_starter_toolkit/utils/runtime/logs.py +33 -0
  36. bedrock_agentcore_starter_toolkit/utils/runtime/policy_template.py +74 -0
  37. bedrock_agentcore_starter_toolkit/utils/runtime/schema.py +151 -0
  38. bedrock_agentcore_starter_toolkit/utils/runtime/templates/Dockerfile.j2 +44 -0
  39. bedrock_agentcore_starter_toolkit/utils/runtime/templates/dockerignore.template +68 -0
  40. bedrock_agentcore_starter_toolkit/utils/runtime/templates/execution_role_policy.json.j2 +98 -0
  41. bedrock_agentcore_starter_toolkit/utils/runtime/templates/execution_role_trust_policy.json.j2 +21 -0
  42. bedrock_agentcore_starter_toolkit-0.1.1.dist-info/METADATA +137 -0
  43. bedrock_agentcore_starter_toolkit-0.1.1.dist-info/RECORD +47 -0
  44. bedrock_agentcore_starter_toolkit-0.1.1.dist-info/entry_points.txt +2 -0
  45. bedrock_agentcore_starter_toolkit-0.1.1.dist-info/licenses/NOTICE.txt +190 -0
  46. bedrock_agentcore_starter_toolkit/init.py +0 -3
  47. bedrock_agentcore_starter_toolkit-0.0.1.dist-info/METADATA +0 -26
  48. bedrock_agentcore_starter_toolkit-0.0.1.dist-info/RECORD +0 -5
  49. {bedrock_agentcore_starter_toolkit-0.0.1.dist-info → bedrock_agentcore_starter_toolkit-0.1.1.dist-info}/WHEEL +0 -0
  50. /bedrock_agentcore_starter_toolkit-0.0.1.dist-info/licenses/LICENSE → /bedrock_agentcore_starter_toolkit-0.1.1.dist-info/licenses/LICENSE.txt +0 -0
@@ -0,0 +1,190 @@
1
+ Bedrock AgentCore CLI Starter Toolkit
2
+ Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+
4
+ This product includes software developed by Amazon.com, Inc. (https://www.amazon.com/).
5
+
6
+ **********************
7
+ THIRD PARTY COMPONENTS
8
+ **********************
9
+
10
+ This software includes the following third-party software/licensing:
11
+
12
+ ================================================================================
13
+ 1. boto3
14
+ ================================================================================
15
+ Copyright 2013-2025 Amazon.com, Inc. or its affiliates. All Rights Reserved.
16
+
17
+ Licensed under the Apache License, Version 2.0 (the "License");
18
+ you may not use this file except in compliance with the License.
19
+ You may obtain a copy of the License at
20
+
21
+ http://www.apache.org/licenses/LICENSE-2.0
22
+
23
+ ================================================================================
24
+ 2. botocore
25
+ ================================================================================
26
+ Copyright 2012-2025 Amazon.com, Inc. or its affiliates. All Rights Reserved.
27
+
28
+ Licensed under the Apache License, Version 2.0 (the "License");
29
+ you may not use this file except in compliance with the License.
30
+ You may obtain a copy of the License at
31
+
32
+ http://www.apache.org/licenses/LICENSE-2.0
33
+
34
+ ================================================================================
35
+ 3. typer
36
+ ================================================================================
37
+ The MIT License (MIT)
38
+
39
+ Copyright (c) 2019 Sebastián Ramírez
40
+
41
+ Permission is hereby granted, free of charge, to any person obtaining a copy
42
+ of this software and associated documentation files (the "Software"), to deal
43
+ in the Software without restriction, including without limitation the rights
44
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
45
+ copies of the Software, and to permit persons to whom the Software is
46
+ furnished to do so, subject to the following conditions:
47
+
48
+ The above copyright notice and this permission notice shall be included in all
49
+ copies or substantial portions of the Software.
50
+
51
+ ================================================================================
52
+ 4. rich
53
+ ================================================================================
54
+ The MIT License (MIT)
55
+
56
+ Copyright (c) 2020 Will McGugan
57
+
58
+ Permission is hereby granted, free of charge, to any person obtaining a copy
59
+ of this software and associated documentation files (the "Software"), to deal
60
+ in the Software without restriction, including without limitation the rights
61
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
62
+ copies of the Software, and to permit persons to whom the Software is
63
+ furnished to do so, subject to the following conditions:
64
+
65
+ The above copyright notice and this permission notice shall be included in all
66
+ copies or substantial portions of the Software.
67
+
68
+ ================================================================================
69
+ 5. pydantic
70
+ ================================================================================
71
+ The MIT License (MIT)
72
+
73
+ Copyright (c) 2017 to present Pydantic Services Inc. and individual contributors.
74
+
75
+ Permission is hereby granted, free of charge, to any person obtaining a copy
76
+ of this software and associated documentation files (the "Software"), to deal
77
+ in the Software without restriction, including without limitation the rights
78
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
79
+ copies of the Software, and to permit persons to whom the Software is
80
+ furnished to do so, subject to the following conditions:
81
+
82
+ The above copyright notice and this permission notice shall be included in all
83
+ copies or substantial portions of the Software.
84
+
85
+ ================================================================================
86
+ 6. httpx
87
+ ================================================================================
88
+ Copyright © 2019, to present Encode OSS Ltd.
89
+ All rights reserved.
90
+
91
+ Redistribution and use in source and binary forms, with or without
92
+ modification, are permitted provided that the following conditions are met:
93
+
94
+ * Redistributions of source code must retain the above copyright notice, this
95
+ list of conditions and the following disclaimer.
96
+
97
+ * Redistributions in binary form must reproduce the above copyright notice,
98
+ this list of conditions and the following disclaimer in the documentation
99
+ and/or other materials provided with the distribution.
100
+
101
+ * Neither the name of the copyright holder nor the names of its
102
+ contributors may be used to endorse or promote products derived from
103
+ this software without specific prior written permission.
104
+
105
+ ================================================================================
106
+ 7. jinja2
107
+ ================================================================================
108
+ Copyright 2007 Pallets
109
+
110
+ Redistribution and use in source and binary forms, with or without
111
+ modification, are permitted provided that the following conditions are met:
112
+
113
+ 1. Redistributions of source code must retain the above copyright notice,
114
+ this list of conditions and the following disclaimer.
115
+
116
+ 2. Redistributions in binary form must reproduce the above copyright notice,
117
+ this list of conditions and the following disclaimer in the documentation
118
+ and/or other materials provided with the distribution.
119
+
120
+ 3. Neither the name of the copyright holder nor the names of its
121
+ contributors may be used to endorse or promote products derived from
122
+ this software without specific prior written permission.
123
+
124
+ ================================================================================
125
+ 8. PyYAML
126
+ ================================================================================
127
+ Copyright (c) 2017-2021 Ingy döt Net
128
+ Copyright (c) 2006-2016 Kirill Simonov
129
+
130
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
131
+ this software and associated documentation files (the "Software"), to deal in
132
+ the Software without restriction, including without limitation the rights to use,
133
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
134
+ Software, and to permit persons to whom the Software is furnished to do so,
135
+ subject to the following conditions:
136
+
137
+ The above copyright notice and this permission notice shall be included in all
138
+ copies or substantial portions of the Software.
139
+
140
+ ================================================================================
141
+ 9. urllib3
142
+ ================================================================================
143
+ MIT License
144
+
145
+ Copyright (c) 2008-2020 Andrey Petrov and contributors.
146
+
147
+ Permission is hereby granted, free of charge, to any person obtaining a copy
148
+ of this software and associated documentation files (the "Software"), to deal
149
+ in the Software without restriction, including without limitation the rights
150
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
151
+ copies of the Software, and to permit persons to whom the Software is
152
+ furnished to do so, subject to the following conditions:
153
+
154
+ The above copyright notice and this permission notice shall be included in all
155
+ copies or substantial portions of the Software.
156
+
157
+ ================================================================================
158
+ 10. requests
159
+ ================================================================================
160
+ Copyright 2019 Kenneth Reitz
161
+
162
+ Licensed under the Apache License, Version 2.0 (the "License");
163
+ you may not use this file except in compliance with the License.
164
+ You may obtain a copy of the License at
165
+
166
+ http://www.apache.org/licenses/LICENSE-2.0
167
+
168
+ ================================================================================
169
+ 11. uvicorn
170
+ ================================================================================
171
+ Copyright © 2017-present, Encode OSS Ltd. All rights reserved.
172
+
173
+ Redistribution and use in source and binary forms, with or without
174
+ modification, are permitted provided that the following conditions are met:
175
+
176
+ * Redistributions of source code must retain the above copyright notice, this
177
+ list of conditions and the following disclaimer.
178
+
179
+ * Redistributions in binary form must reproduce the above copyright notice,
180
+ this list of conditions and the following disclaimer in the documentation
181
+ and/or other materials provided with the distribution.
182
+
183
+ * Neither the name of the copyright holder nor the names of its
184
+ contributors may be used to endorse or promote products derived from
185
+ this software without specific prior written permission.
186
+
187
+ ================================================================================
188
+
189
+ For the full text of licenses, please see the individual LICENSE files
190
+ in the source distribution or visit the project homepages.
@@ -1,3 +0,0 @@
1
- """Starter toolkit for AWS Bedrock AgentCore."""
2
-
3
- __version__ = "0.0.1"
@@ -1,26 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: bedrock-agentcore-starter-toolkit
3
- Version: 0.0.1
4
- Summary: Starter toolkit for AWS Bedrock AgentCore
5
- Project-URL: Homepage, https://github.com/aws/bedrock-agentcore-sdk-python
6
- Project-URL: Bug Tracker, https://github.com/aws/bedrock-agentcore-sdk-python/issues
7
- Author-email: AWS <opensource@amazon.com>
8
- License: Apache-2.0
9
- License-File: LICENSE
10
- Classifier: Development Status :: 3 - Alpha
11
- Classifier: Intended Audience :: Developers
12
- Classifier: License :: OSI Approved :: Apache Software License
13
- Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.10
15
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
- Requires-Python: >=3.10
17
- Requires-Dist: bedrock-agentcore>=0.1.0
18
- Description-Content-Type: text/markdown
19
-
20
- # Bedrock AgentCore Starter Toolkit
21
-
22
- A starter toolkit for AWS Bedrock AgentCore. This is a placeholder package.
23
-
24
- ## License
25
-
26
- This library is licensed under the Apache 2.0 License. See the LICENSE file.
@@ -1,5 +0,0 @@
1
- bedrock_agentcore_starter_toolkit/init.py,sha256=7-8akRgSdlRPiMxm48nza8qMCbZuVA3J0_liJL3dwYU,72
2
- bedrock_agentcore_starter_toolkit-0.0.1.dist-info/METADATA,sha256=XUGYUs3K8MnHK8Zpqwcrk94f_ViFZcE1h5e-Qvqo52E,1001
3
- bedrock_agentcore_starter_toolkit-0.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4
- bedrock_agentcore_starter_toolkit-0.0.1.dist-info/licenses/LICENSE,sha256=nNPOMinitYdtfbhdQgsPgz1UowBznU6QVN3Xs0pSTKU,10768
5
- bedrock_agentcore_starter_toolkit-0.0.1.dist-info/RECORD,,