Commit 66be921
committed
parent 44f5d23
author James Brubaker <jimmybrubaker@live.com> 1750079629 -0400
committer James Brubaker <jimmybrubaker@live.com> 1752586952 -0400
* test(memory): add an end-to-end integration test
* test: refactor code to be more readable
---------
Co-authored-by: Jack Yuan <jackypc@amazon.com>
fix(generate_image): updating generate_image tool to support additional models in Amazon Bedrock (strands-agents#89)
* switching region to us-east-1 as sdxl model is no longer available in us-west-2
* fix(image-gen): add support for Amazon Nova Canvas
Fix image generation functionality by adding support for Amazon Nova Canvas model in addition to existing Stable Diffusion models. This enhancement allows users to generate images using both model types with appropriate parameters.
* fix(gen_image): region selection and number of images parmaters
* fix: updating toolspec to include region id and remove number of images parameter (defaulting the tool to generate one image always
* fix(generate_image): update the tool to initial state where it only support stable diffusion models
* Update src/strands_tools/generate_image.py
Co-authored-by: Mackenzie Zastrow <3211021+zastrowm@users.noreply.github.com>
* fix(generate_image): removing conditional for model specific
* Update src/strands_tools/generate_image.py
Add end to end test for read, write, edit tools (strands-agents#100)
* test(read_write_edit): add end to end tests for these tools
---------
Co-authored-by: Jack Yuan <jackypc@amazon.com>
test(generate_read_image): add end to end tests for image tools (strands-agents#107)
Co-authored-by: Jack Yuan <jackypc@amazon.com>
feat: migrate editor tool from TOOL_SPEC to @tool decorator (strands-agents#111)
Adding use_computer tool
fix: Updating readme with fix for use_browser tool
fix: replace colorama with rich's native styling in use_aws tool (strands-agents#118)
* fix: replace colorama with rich's native styling in use_aws tool
- Replace colorama Fore/Style with rich Table for better UI rendering
- Add structured table layout for AWS operation details
- Improve visual consistency with other rich-based tools
- Remove colorama dependency from use_aws module
- Fixes strands-agents#35: use_aws tool rich UI rendering issues
* chore: remove colorama dependency from pyproject.toml
- No longer needed after replacing colorama with Rich native styling
- Fixes Rich panel border rendering issues when mixing ANSI sequences
- Part of use-aws Rich UI rendering improvements
---------
Co-authored-by: Strands Agent <217235299+strands-agent@users.noreply.github.com>
Add stability tool (strands-agents#101)
Adds a tool that will create images using the Stability AI Platform + related documentation
feat: updating README.md with information about use_computer
test(http_request): add integration test for http_request tool (strands-agents#113)
* test(http_request): add integration test for http_request tool
* test(http_request): use self host server to handle the tests, fix mem0 unit test fail when user has faiss installed
---------
Co-authored-by: Jack Yuan <jackypc@amazon.com>
fix: Fixing optional dependencies for use_browser tool (strands-agents#119)
* fix: Fixing optional dependencies for use_browser tool
* fix: Fixing optional dependencies for use_browser tool
* fix: Updating readme with fix for use_browser tool
fix: fixing dependencies and merging with main branch
feat(a2a): native client tool (strands-agents#108)
Co-authored-by: jer <jerebill@amazon.com>
refactor(a2a): rename dependency target and update docs (strands-agents#125)
Co-authored-by: jer <jerebill@amazon.com>
adding code to delete screenshots taken by use_computer
adding pytesseract dependency as optional1 parent 3566b0f commit 66be921
File tree
4 files changed
+1881
-2
lines changed- src/strands_tools
- tests
4 files changed
+1881
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
121 | 121 | | |
122 | 122 | | |
123 | 123 | | |
| 124 | + | |
124 | 125 | | |
125 | 126 | | |
126 | 127 | | |
| |||
186 | 187 | | |
187 | 188 | | |
188 | 189 | | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
189 | 197 | | |
190 | 198 | | |
191 | 199 | | |
| |||
331 | 339 | | |
332 | 340 | | |
333 | 341 | | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | + | |
| 358 | + | |
| 359 | + | |
| 360 | + | |
| 361 | + | |
| 362 | + | |
334 | 363 | | |
335 | 364 | | |
336 | 365 | | |
| |||
527 | 556 | | |
528 | 557 | | |
529 | 558 | | |
530 | | - | |
| 559 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| 38 | + | |
| 39 | + | |
38 | 40 | | |
39 | 41 | | |
40 | 42 | | |
| |||
185 | 187 | | |
186 | 188 | | |
187 | 189 | | |
188 | | - | |
| 190 | + | |
0 commit comments