bedrock-agentcore 0.0.1
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.
- package/README.md +14 -0
- package/index.js +4 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# bedrock-agentcore
|
|
2
|
+
|
|
3
|
+
🚧 **Under Development** 🚧
|
|
4
|
+
|
|
5
|
+
This package is currently under active development. The full TypeScript SDK will be released soon.
|
|
6
|
+
|
|
7
|
+
For the Python version, see: [bedrock-agentcore on PyPI](https://pypi.org/project/bedrock-agentcore/)
|
|
8
|
+
|
|
9
|
+
## Coming Soon
|
|
10
|
+
- Full TypeScript implementation
|
|
11
|
+
- Complete documentation
|
|
12
|
+
- Examples and tutorials
|
|
13
|
+
|
|
14
|
+
Stay tuned!
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bedrock-agentcore",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "\"Amazon Bedrock AgentCore - TypeScript SDK (Coming Soon)\"",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "npm run test && npm run test:integ"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/aws/bedrock-agentcore-sdk-typescript.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"bedrock",
|
|
15
|
+
"agentcore",
|
|
16
|
+
"aws",
|
|
17
|
+
"ai",
|
|
18
|
+
"agents",
|
|
19
|
+
"typescript",
|
|
20
|
+
"sdk"
|
|
21
|
+
],
|
|
22
|
+
"author": "Sundar and Abhimanyu (Amazon)",
|
|
23
|
+
"license": "Apache-2.0",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/aws/bedrock-agentcore-sdk-typescript/issues"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://github.com/aws/bedrock-agentcore-sdk-typescript#readme"
|
|
28
|
+
}
|