@strands-agents/sdk 0.1.1 → 0.1.2
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 +1 -1
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -199,7 +199,7 @@ await documentationTools.disconnect();
|
|
|
199
199
|
For detailed guidance, tutorials, and concept overviews, please visit:
|
|
200
200
|
|
|
201
201
|
- **[Official Documentation](https://strandsagents.com/)**: Comprehensive guides and tutorials
|
|
202
|
-
- **[API Reference](.
|
|
202
|
+
- **[API Reference](https://strandsagents.com/latest/documentation/docs/api-reference/typescript/)**: Complete API documentation
|
|
203
203
|
- **[Examples](./examples/)**: Sample applications
|
|
204
204
|
- **[Contributing Guide](CONTRIBUTING.md)**: Development setup and guidelines
|
|
205
205
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strands-agents/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "TypeScript SDK for Strands Agents framework",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"module": "dist/src/index.js",
|
|
@@ -11,28 +11,28 @@
|
|
|
11
11
|
],
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
|
-
"
|
|
15
|
-
"
|
|
14
|
+
"types": "./dist/src/index.d.ts",
|
|
15
|
+
"default": "./dist/src/index.js"
|
|
16
16
|
},
|
|
17
17
|
"./openai": {
|
|
18
|
-
"
|
|
19
|
-
"
|
|
18
|
+
"types": "./dist/src/models/openai.d.ts",
|
|
19
|
+
"default": "./dist/src/models/openai.js"
|
|
20
20
|
},
|
|
21
21
|
"./bedrock": {
|
|
22
|
-
"
|
|
23
|
-
"
|
|
22
|
+
"types": "./dist/src/models/bedrock.d.ts",
|
|
23
|
+
"default": "./dist/src/models/bedrock.js"
|
|
24
24
|
},
|
|
25
25
|
"./vended_tools/notebook": {
|
|
26
|
-
"
|
|
27
|
-
"
|
|
26
|
+
"types": "./dist/vended_tools/notebook/index.d.ts",
|
|
27
|
+
"default": "./dist/vended_tools/notebook/index.js"
|
|
28
28
|
},
|
|
29
29
|
"./vended_tools/file_editor": {
|
|
30
|
-
"
|
|
31
|
-
"
|
|
30
|
+
"types": "./dist/vended_tools/file_editor/index.d.ts",
|
|
31
|
+
"default": "./dist/vended_tools/file_editor/index.js"
|
|
32
32
|
},
|
|
33
33
|
"./vended_tools/http_request": {
|
|
34
|
-
"
|
|
35
|
-
"
|
|
34
|
+
"types": "./dist/vended_tools/http_request/index.d.ts",
|
|
35
|
+
"default": "./dist/vended_tools/http_request/index.js"
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"test:browser:install": "npx playwright install --with-deps chromium",
|
|
51
51
|
"test:all": "vitest run --project unit-node --project unit-browser",
|
|
52
52
|
"test:all:coverage": "vitest run --coverage --project unit-node --project unit-browser",
|
|
53
|
-
"test:package": "npm
|
|
53
|
+
"test:package": "cd test/packages/esm-module && npm install && node esm.js && cd ../cjs-module && npm install && node cjs.js",
|
|
54
54
|
"lint": "eslint src tests_integ vended_tools",
|
|
55
55
|
"lint:fix": "eslint src tests_integ vended_tools --fix",
|
|
56
56
|
"format": "prettier --write src tests_integ vended_tools",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
},
|
|
93
93
|
"repository": {
|
|
94
94
|
"type": "git",
|
|
95
|
-
"url": "https://github.com/strands-agents/sdk-typescript.git"
|
|
95
|
+
"url": "git+https://github.com/strands-agents/sdk-typescript.git"
|
|
96
96
|
},
|
|
97
97
|
"bugs": {
|
|
98
98
|
"url": "https://github.com/strands-agents/sdk-typescript/issues"
|