strands.tools.registry
¶
Tool registry.
This module provides the central registry for all tools available to the agent, including discovery, validation, and invocation capabilities.
_COMPOSITION_KEYWORDS = ('anyOf', 'oneOf', 'allOf', 'not')
module-attribute
¶
JSON Schema composition keywords that define type constraints.
Properties with these should not get a default type: "string" added.
logger = logging.getLogger(__name__)
module-attribute
¶
AgentTool
¶
Bases: ABC
Abstract base class for all SDK tools.
This class defines the interface that all tool implementations must follow. Each tool must provide its name, specification, and implement a stream method that executes the tool's functionality.
Source code in strands/types/tools.py
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 | |
is_dynamic
property
¶
Whether the tool was dynamically loaded during runtime.
Dynamic tools may have different lifecycle management.
Returns:
| Type | Description |
|---|---|
bool
|
True if loaded dynamically, False otherwise. |
supports_hot_reload
property
¶
Whether the tool supports automatic reloading when modified.
Returns:
| Type | Description |
|---|---|
bool
|
False by default. |
tool_name
abstractmethod
property
¶
The unique name of the tool used for identification and invocation.
tool_spec
abstractmethod
property
¶
Tool specification that describes its functionality and parameters.
tool_type
abstractmethod
property
¶
The type of the tool implementation (e.g., 'python', 'javascript', 'lambda').
Used for categorization and appropriate handling.
__init__()
¶
Initialize the base agent tool with default dynamic state.
Source code in strands/types/tools.py
227 228 229 | |
get_display_properties()
¶
Get properties to display in UI representations of this tool.
Subclasses can extend this to include additional properties.
Returns:
| Type | Description |
|---|---|
dict[str, str]
|
Dictionary of property names and their string values. |
Source code in strands/types/tools.py
295 296 297 298 299 300 301 302 303 304 305 306 | |
mark_dynamic()
¶
Mark this tool as dynamically loaded.
Source code in strands/types/tools.py
291 292 293 | |
stream(tool_use, invocation_state, **kwargs)
abstractmethod
¶
Stream tool events and return the final result.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_use
|
ToolUse
|
The tool use request containing tool ID and parameters. |
required |
invocation_state
|
dict[str, Any]
|
Caller-provided kwargs that were passed to the agent when it was invoked (agent(), agent.invoke_async(), etc.). |
required |
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
| Type | Description |
|---|---|
ToolGenerator
|
Tool events with the last being the tool result. |
Source code in strands/types/tools.py
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | |
DecoratedFunctionTool
¶
Bases: AgentTool, Generic[P, R]
An AgentTool that wraps a function that was decorated with @tool.
This class adapts Python functions decorated with @tool to the AgentTool interface. It handles both direct function calls and tool use invocations, maintaining the function's original behavior while adding tool capabilities.
The class is generic over the function's parameter types (P) and return type (R) to maintain type safety.
Source code in strands/tools/decorator.py
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 | |
supports_hot_reload
property
¶
Check if this tool supports automatic reloading when modified.
Returns:
| Type | Description |
|---|---|
bool
|
Always true for function-based tools. |
tool_name
property
¶
Get the name of the tool.
Returns:
| Type | Description |
|---|---|
str
|
The tool name as a string. |
tool_spec
property
¶
Get the tool specification.
Returns:
| Type | Description |
|---|---|
ToolSpec
|
The tool specification dictionary containing metadata for Agent integration. |
tool_type
property
¶
Get the type of the tool.
Returns:
| Type | Description |
|---|---|
str
|
The string "function" indicating this is a function-based tool. |
__call__(*args, **kwargs)
¶
Call the original function with the provided arguments.
This method enables the decorated function to be called directly with its original signature, preserving the normal function call behavior.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*args
|
args
|
Positional arguments to pass to the function. |
()
|
**kwargs
|
kwargs
|
Keyword arguments to pass to the function. |
{}
|
Returns:
| Type | Description |
|---|---|
R
|
The result of the original function call. |
Source code in strands/tools/decorator.py
499 500 501 502 503 504 505 506 507 508 509 510 511 512 | |
__get__(instance, obj_type=None)
¶
Descriptor protocol implementation for proper method binding.
This method enables the decorated function to work correctly when used as a class method. It binds the instance to the function call when accessed through an instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
instance
|
Any
|
The instance through which the descriptor is accessed, or None when accessed through the class. |
required |
obj_type
|
Optional[Type]
|
The class through which the descriptor is accessed. |
None
|
Returns:
| Type | Description |
|---|---|
DecoratedFunctionTool[P, R]
|
A new DecoratedFunctionTool with the instance bound to the function if accessed through an instance, |
DecoratedFunctionTool[P, R]
|
otherwise returns self. |
Example
class MyClass:
@tool
def my_tool():
...
instance = MyClass()
# instance of DecoratedFunctionTool that works as you'd expect
tool = instance.my_tool
Source code in strands/tools/decorator.py
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 | |
__init__(tool_name, tool_spec, tool_func, metadata)
¶
Initialize the decorated function tool.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_name
|
str
|
The name to use for the tool (usually the function name). |
required |
tool_spec
|
ToolSpec
|
The tool specification containing metadata for Agent integration. |
required |
tool_func
|
Callable[P, R]
|
The original function being decorated. |
required |
metadata
|
FunctionToolMetadata
|
The FunctionToolMetadata object with extracted function information. |
required |
Source code in strands/tools/decorator.py
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 | |
get_display_properties()
¶
Get properties to display in UI representations.
Returns:
| Type | Description |
|---|---|
dict[str, str]
|
Function properties (e.g., function name). |
Source code in strands/tools/decorator.py
651 652 653 654 655 656 657 658 659 660 | |
stream(tool_use, invocation_state, **kwargs)
async
¶
Stream the tool with a tool use specification.
This method handles tool use streams from a Strands Agent. It validates the input, calls the function, and formats the result according to the expected tool result format.
Key operations:
- Extract tool use ID and input parameters
- Validate input against the function's expected parameters
- Call the function with validated input
- Format the result as a standard tool result
- Handle and format any errors that occur
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_use
|
ToolUse
|
The tool use specification from the Agent. |
required |
invocation_state
|
dict[str, Any]
|
Caller-provided kwargs that were passed to the agent when it was invoked (agent(), agent.invoke_async(), etc.). |
required |
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
| Type | Description |
|---|---|
ToolGenerator
|
Tool events with the last being the tool result. |
Source code in strands/tools/decorator.py
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 | |
PythonAgentTool
¶
Bases: AgentTool
Tool implementation for Python-based tools.
This class handles tools implemented as Python functions, providing a simple interface for executing Python code as SDK tools.
Source code in strands/tools/tools.py
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | |
supports_hot_reload
property
¶
Check if this tool supports automatic reloading when modified.
Returns:
| Type | Description |
|---|---|
bool
|
Always true for function-based tools. |
tool_name
property
¶
Get the name of the tool.
Returns:
| Type | Description |
|---|---|
str
|
The name of the tool. |
tool_spec
property
¶
Get the tool specification for this Python-based tool.
Returns:
| Type | Description |
|---|---|
ToolSpec
|
The tool specification. |
tool_type
property
¶
Identifies this as a Python-based tool implementation.
Returns:
| Type | Description |
|---|---|
str
|
"python". |
__init__(tool_name, tool_spec, tool_func)
¶
Initialize a Python-based tool.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_name
|
str
|
Unique identifier for the tool. |
required |
tool_spec
|
ToolSpec
|
Tool specification defining parameters and behavior. |
required |
tool_func
|
ToolFunc
|
Python function to execute when the tool is invoked. |
required |
Source code in strands/tools/tools.py
168 169 170 171 172 173 174 175 176 177 178 179 180 | |
stream(tool_use, invocation_state, **kwargs)
async
¶
Stream the Python function with the given tool use request.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_use
|
ToolUse
|
The tool use request. |
required |
invocation_state
|
dict[str, Any]
|
Context for the tool invocation, including agent state. |
required |
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
| Type | Description |
|---|---|
ToolGenerator
|
Tool events with the last being the tool result. |
Source code in strands/tools/tools.py
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | |
ToolProvider
¶
Bases: ABC
Interface for providing tools with lifecycle management.
Provides a way to load a collection of tools and clean them up when done, with lifecycle managed by the agent.
Source code in strands/experimental/tools/tool_provider.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | |
add_consumer(consumer_id, **kwargs)
abstractmethod
¶
Add a consumer to this tool provider.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
consumer_id
|
Any
|
Unique identifier for the consumer. |
required |
**kwargs
|
Any
|
Additional arguments for future compatibility. |
{}
|
Source code in strands/experimental/tools/tool_provider.py
29 30 31 32 33 34 35 36 37 | |
load_tools(**kwargs)
abstractmethod
async
¶
Load and return the tools in this provider.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**kwargs
|
Any
|
Additional arguments for future compatibility. |
{}
|
Returns:
| Type | Description |
|---|---|
Sequence[AgentTool]
|
List of tools that are ready to use. |
Source code in strands/experimental/tools/tool_provider.py
17 18 19 20 21 22 23 24 25 26 27 | |
remove_consumer(consumer_id, **kwargs)
abstractmethod
¶
Remove a consumer from this tool provider.
This method must be idempotent - calling it multiple times with the same ID should have no additional effect after the first call.
Provider may clean up resources when no consumers remain.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
consumer_id
|
Any
|
Unique identifier for the consumer. |
required |
**kwargs
|
Any
|
Additional arguments for future compatibility. |
{}
|
Source code in strands/experimental/tools/tool_provider.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 | |
ToolRegistry
¶
Central registry for all tools available to the agent.
This class manages tool registration, validation, discovery, and invocation.
Source code in strands/tools/registry.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 | |
NewToolDict
¶
Bases: TypedDict
Dictionary type for adding or updating a tool in the configuration.
Attributes:
| Name | Type | Description |
|---|---|---|
spec |
ToolSpec
|
The tool specification that defines the tool's interface and behavior. |
Source code in strands/tools/registry.py
639 640 641 642 643 644 645 646 | |
__init__()
¶
Initialize the tool registry.
Source code in strands/tools/registry.py
36 37 38 39 40 41 42 | |
cleanup(**kwargs)
¶
Synchronously clean up all tool providers in this registry.
Source code in strands/tools/registry.py
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 | |
discover_tool_modules()
¶
Discover available tool modules in all tools directories.
Returns:
| Type | Description |
|---|---|
Dict[str, Path]
|
Dictionary mapping tool names to their full paths. |
Source code in strands/tools/registry.py
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | |
get_all_tool_specs()
¶
Get all the tool specs for all tools in this registry..
Returns:
| Type | Description |
|---|---|
list[ToolSpec]
|
A list of ToolSpecs. |
Source code in strands/tools/registry.py
564 565 566 567 568 569 570 571 572 | |
get_all_tools_config()
¶
Dynamically generate tool configuration by combining built-in and dynamic tools.
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Dictionary containing all tool configurations. |
Source code in strands/tools/registry.py
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | |
get_tools_dirs()
¶
Get all tool directory paths.
Returns:
| Type | Description |
|---|---|
List[Path]
|
A list of Path objects for current working directory's "./tools/". |
Source code in strands/tools/registry.py
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 | |
initialize_tools(load_tools_from_directory=False)
¶
Initialize all tools by discovering and loading them dynamically from all tool directories.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
load_tools_from_directory
|
bool
|
Whether to reload tools if changes are made at runtime. |
False
|
Source code in strands/tools/registry.py
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 | |
load_tool_from_filepath(tool_name, tool_path)
¶
DEPRECATED: Load a tool from a file path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_name
|
str
|
Name of the tool. |
required |
tool_path
|
str
|
Path to the tool file. |
required |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If the tool file is not found. |
ValueError
|
If the tool cannot be loaded. |
Source code in strands/tools/registry.py
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | |
process_tools(tools)
¶
Process tools list.
Process list of tools that can contain local file path string, module import path string, imported modules, @tool decorated functions, or instances of AgentTool.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tools
|
List[Any]
|
List of tool specifications. Can be:
|
required |
Returns:
| Type | Description |
|---|---|
List[str]
|
List of tool names that were processed. |
Source code in strands/tools/registry.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | |
register_dynamic_tool(tool)
¶
Register a tool dynamically for temporary use.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool
|
AgentTool
|
The tool to register dynamically |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If a tool with this name already exists |
Source code in strands/tools/registry.py
574 575 576 577 578 579 580 581 582 583 584 585 586 587 | |
register_tool(tool)
¶
Register a tool function with the given name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool
|
AgentTool
|
The tool to register. |
required |
Source code in strands/tools/registry.py
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | |
reload_tool(tool_name)
¶
Reload a specific tool module.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_name
|
str
|
Name of the tool to reload. |
required |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If the tool file cannot be found. |
ImportError
|
If there are issues importing the tool module. |
ValueError
|
If the tool specification is invalid or required components are missing. |
Exception
|
For other errors during tool reloading. |
Source code in strands/tools/registry.py
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 | |
replace(new_tool)
¶
Replace an existing tool with a new implementation.
This performs a swap of the tool implementation in the registry. The replacement takes effect on the next agent invocation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
new_tool
|
AgentTool
|
New tool implementation. Its name must match the tool being replaced. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the tool doesn't exist. |
Source code in strands/tools/registry.py
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 | |
validate_tool_spec(tool_spec)
¶
Validate tool specification against required schema.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_spec
|
ToolSpec
|
Tool specification to validate. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the specification is invalid. |
Source code in strands/tools/registry.py
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 | |
ToolSpec
¶
Bases: TypedDict
Specification for a tool that can be used by an agent.
Attributes:
| Name | Type | Description |
|---|---|---|
description |
str
|
A human-readable description of what the tool does. |
inputSchema |
JSONSchema
|
JSON Schema defining the expected input parameters. |
name |
str
|
The unique name of the tool. |
outputSchema |
NotRequired[JSONSchema]
|
Optional JSON Schema defining the expected output format. Note: Not all model providers support this field. Providers that don't support it should filter it out before sending to their API. |
Source code in strands/types/tools.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | |
load_tool_from_string(tool_string)
¶
Load tools follows strands supported input string formats.
This function can load a tool based on a string in the following ways:
1. Local file path to a module based tool: ./path/to/module/tool.py
2. Module import path
2.1. Path to a module based tool: strands_tools.file_read
2.2. Path to a module with multiple AgentTool instances (@tool decorated): tests.fixtures.say_tool
2.3. Path to a module and a specific function: tests.fixtures.say_tool:say
Source code in strands/tools/loader.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | |
load_tools_from_module(module, module_name)
¶
Load tools from a module.
First checks if the passed in module has instances of DecoratedToolFunction classes as atributes to the module. If so, then it returns them as a list of tools. If not, then it attempts to load the module as a module based tool.
Source code in strands/tools/loader.py
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | |
normalize_schema(schema)
¶
Normalize a JSON schema to match expectations.
This function recursively processes nested objects to preserve the complete schema structure. Uses a copy-then-normalize approach to preserve all original schema properties.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
schema
|
dict[str, Any]
|
The schema to normalize. |
required |
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
The normalized schema. |
Source code in strands/tools/tools.py
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
normalize_tool_spec(tool_spec)
¶
Normalize a complete tool specification by transforming its inputSchema.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_spec
|
ToolSpec
|
The tool specification to normalize. |
required |
Returns:
| Type | Description |
|---|---|
ToolSpec
|
The normalized tool specification. |
Source code in strands/tools/tools.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | |
run_async(async_func)
¶
Run an async function in a separate thread to avoid event loop conflicts.
This utility handles the common pattern of running async code from sync contexts by using ThreadPoolExecutor to isolate the async execution.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
async_func
|
Callable[[], Awaitable[T]]
|
A callable that returns an awaitable |
required |
Returns:
| Type | Description |
|---|---|
T
|
The result of the async function |
Source code in strands/_async.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | |