strands.event_loop.event_loop
¶
This module implements the central event loop.
The event loop allows agents to:
- Process conversation messages
- Execute tools based on model requests
- Handle errors and recovery strategies
- Manage recursive execution cycles
INITIAL_DELAY = 4
module-attribute
¶
MAX_ATTEMPTS = 6
module-attribute
¶
MAX_DELAY = 240
module-attribute
¶
Messages = list[Message]
module-attribute
¶
A list of messages representing a conversation.
StopReason = Literal['content_filtered', 'end_turn', 'guardrail_intervened', 'interrupt', 'max_tokens', 'stop_sequence', 'tool_use']
module-attribute
¶
Reason for the model ending its response generation.
- "content_filtered": Content was filtered due to policy violation
- "end_turn": Normal completion of the response
- "guardrail_intervened": Guardrail system intervened
- "interrupt": Agent was interrupted for human input
- "max_tokens": Maximum token limit reached
- "stop_sequence": Stop sequence encountered
- "tool_use": Model requested to use a tool
logger = logging.getLogger(__name__)
module-attribute
¶
AfterModelCallEvent
dataclass
¶
Bases: HookEvent
Event triggered after the model invocation completes.
This event is fired after the agent has finished calling the model, regardless of whether the invocation was successful or resulted in an error. Hook providers can use this event for cleanup, logging, or post-processing.
Note: This event uses reverse callback ordering, meaning callbacks registered later will be invoked first during cleanup.
Note: This event is not fired for invocations to structured_output.
Attributes:
| Name | Type | Description |
|---|---|---|
invocation_state |
dict[str, Any]
|
State and configuration passed through the agent invocation. This can include shared context for multi-agent coordination, request tracking, and dynamic configuration. |
stop_response |
ModelStopResponse | None
|
The model response data if invocation was successful, None if failed. |
exception |
Exception | None
|
Exception if the model invocation failed, None if successful. |
retry |
bool
|
Whether to retry the model invocation. Can be set by hook callbacks to trigger a retry. When True, the current response is discarded and the model is called again. Defaults to False. |
Source code in strands/hooks/events.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 281 282 283 284 285 286 287 288 | |
should_reverse_callbacks
property
¶
True to invoke callbacks in reverse order.
ModelStopResponse
dataclass
¶
Model response data from successful invocation.
Attributes:
| Name | Type | Description |
|---|---|---|
stop_reason |
StopReason
|
The reason the model stopped generating. |
message |
Message
|
The generated message from the model. |
Source code in strands/hooks/events.py
265 266 267 268 269 270 271 272 273 274 275 | |
Agent
¶
Bases: AgentBase
Core Agent implementation.
An agent orchestrates the following workflow:
- Receives user input
- Processes the input using a language model
- Decides whether to use tools to gather information or perform actions
- Executes those tools and receives results
- Continues reasoning with the new information
- Produces a final response
Source code in strands/agent/agent.py
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 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 | |
system_prompt
property
writable
¶
Get the system prompt as a string for backwards compatibility.
Returns the system prompt as a concatenated string when it contains text content, or None if no text content is present. This maintains backwards compatibility with existing code that expects system_prompt to be a string.
Returns:
| Type | Description |
|---|---|
str | None
|
The system prompt as a string, or None if no text content exists. |
tool
property
¶
Call tool as a function.
Returns:
| Type | Description |
|---|---|
_ToolCaller
|
Tool caller through which user can invoke tool as a function. |
Example
agent = Agent(tools=[calculator])
agent.tool.calculator(...)
tool_names
property
¶
Get a list of all registered tool names.
Returns:
| Type | Description |
|---|---|
list[str]
|
Names of all tools available to this agent. |
__call__(prompt=None, *, invocation_state=None, structured_output_model=None, structured_output_prompt=None, **kwargs)
¶
Process a natural language prompt through the agent's event loop.
This method implements the conversational interface with multiple input patterns:
- String input: agent("hello!")
- ContentBlock list: agent([{"text": "hello"}, {"image": {...}}])
- Message list: agent([{"role": "user", "content": [{"text": "hello"}]}])
- No input: agent() - uses existing conversation history
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prompt
|
AgentInput
|
User input in various formats: - str: Simple text input - list[ContentBlock]: Multi-modal content blocks - list[Message]: Complete messages with roles - None: Use existing conversation history |
None
|
invocation_state
|
dict[str, Any] | None
|
Additional parameters to pass through the event loop. |
None
|
structured_output_model
|
type[BaseModel] | None
|
Pydantic model type(s) for structured output (overrides agent default). |
None
|
structured_output_prompt
|
str | None
|
Custom prompt for forcing structured output (overrides agent default). |
None
|
**kwargs
|
Any
|
Additional parameters to pass through the event loop.[Deprecating] |
{}
|
Returns:
| Type | Description |
|---|---|
AgentResult
|
Result object containing:
|
Source code in strands/agent/agent.py
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 | |
__del__()
¶
Clean up resources when agent is garbage collected.
Source code in strands/agent/agent.py
570 571 572 573 574 575 | |
__init__(model=None, messages=None, tools=None, system_prompt=None, structured_output_model=None, callback_handler=_DEFAULT_CALLBACK_HANDLER, conversation_manager=None, record_direct_tool_call=True, load_tools_from_directory=False, trace_attributes=None, *, agent_id=None, name=None, description=None, state=None, hooks=None, session_manager=None, structured_output_prompt=None, tool_executor=None, retry_strategy=_DEFAULT_RETRY_STRATEGY)
¶
Initialize the Agent with the specified configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Model | str | None
|
Provider for running inference or a string representing the model-id for Bedrock to use. Defaults to strands.models.BedrockModel if None. |
None
|
messages
|
Messages | None
|
List of initial messages to pre-load into the conversation. Defaults to an empty list if None. |
None
|
tools
|
list[Union[str, dict[str, str], ToolProvider, Any]] | None
|
List of tools to make available to the agent. Can be specified as:
If provided, only these tools will be available. If None, all tools will be available. |
None
|
system_prompt
|
str | list[SystemContentBlock] | None
|
System prompt to guide model behavior. Can be a string or a list of SystemContentBlock objects for advanced features like caching. If None, the model will behave according to its default settings. |
None
|
structured_output_model
|
type[BaseModel] | None
|
Pydantic model type(s) for structured output. When specified, all agent calls will attempt to return structured output of this type. This can be overridden on the agent invocation. Defaults to None (no structured output). |
None
|
callback_handler
|
Callable[..., Any] | _DefaultCallbackHandlerSentinel | None
|
Callback for processing events as they happen during agent execution. If not provided (using the default), a new PrintingCallbackHandler instance is created. If explicitly set to None, null_callback_handler is used. |
_DEFAULT_CALLBACK_HANDLER
|
conversation_manager
|
ConversationManager | None
|
Manager for conversation history and context window. Defaults to strands.agent.conversation_manager.SlidingWindowConversationManager if None. |
None
|
record_direct_tool_call
|
bool
|
Whether to record direct tool calls in message history. Defaults to True. |
True
|
load_tools_from_directory
|
bool
|
Whether to load and automatically reload tools in the |
False
|
trace_attributes
|
Mapping[str, AttributeValue] | None
|
Custom trace attributes to apply to the agent's trace span. |
None
|
agent_id
|
str | None
|
Optional ID for the agent, useful for session management and multi-agent scenarios. Defaults to "default". |
None
|
name
|
str | None
|
name of the Agent Defaults to "Strands Agents". |
None
|
description
|
str | None
|
description of what the Agent does Defaults to None. |
None
|
state
|
AgentState | dict | None
|
stateful information for the agent. Can be either an AgentState object, or a json serializable dict. Defaults to an empty AgentState object. |
None
|
hooks
|
list[HookProvider] | None
|
hooks to be added to the agent hook registry Defaults to None. |
None
|
session_manager
|
SessionManager | None
|
Manager for handling agent sessions including conversation history and state. If provided, enables session-based persistence and state management. |
None
|
structured_output_prompt
|
str | None
|
Custom prompt message used when forcing structured output. When using structured output, if the model doesn't automatically use the output tool, the agent sends a follow-up message to request structured formatting. This parameter allows customizing that message. Defaults to "You must format the previous response as structured output." |
None
|
tool_executor
|
ToolExecutor | None
|
Definition of tool execution strategy (e.g., sequential, concurrent, etc.). |
None
|
retry_strategy
|
ModelRetryStrategy | _DefaultRetryStrategySentinel | None
|
Strategy for retrying model calls on throttling or other transient errors. Defaults to ModelRetryStrategy with max_attempts=6, initial_delay=4s, max_delay=240s. Implement a custom HookProvider for custom retry logic, or pass None to disable retries. |
_DEFAULT_RETRY_STRATEGY
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If agent id contains path separators. |
Source code in strands/agent/agent.py
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 | |
cleanup()
¶
Clean up resources used by the agent.
This method cleans up all tool providers that require explicit cleanup, such as MCP clients. It should be called when the agent is no longer needed to ensure proper resource cleanup.
Note: This method uses a "belt and braces" approach with automatic cleanup through finalizers as a fallback, but explicit cleanup is recommended.
Source code in strands/agent/agent.py
558 559 560 561 562 563 564 565 566 567 568 | |
invoke_async(prompt=None, *, invocation_state=None, structured_output_model=None, structured_output_prompt=None, **kwargs)
async
¶
Process a natural language prompt through the agent's event loop.
This method implements the conversational interface with multiple input patterns: - String input: Simple text input - ContentBlock list: Multi-modal content blocks - Message list: Complete messages with roles - No input: Use existing conversation history
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prompt
|
AgentInput
|
User input in various formats: - str: Simple text input - list[ContentBlock]: Multi-modal content blocks - list[Message]: Complete messages with roles - None: Use existing conversation history |
None
|
invocation_state
|
dict[str, Any] | None
|
Additional parameters to pass through the event loop. |
None
|
structured_output_model
|
type[BaseModel] | None
|
Pydantic model type(s) for structured output (overrides agent default). |
None
|
structured_output_prompt
|
str | None
|
Custom prompt for forcing structured output (overrides agent default). |
None
|
**kwargs
|
Any
|
Additional parameters to pass through the event loop.[Deprecating] |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
Result |
AgentResult
|
object containing:
|
Source code in strands/agent/agent.py
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 | |
stream_async(prompt=None, *, invocation_state=None, structured_output_model=None, structured_output_prompt=None, **kwargs)
async
¶
Process a natural language prompt and yield events as an async iterator.
This method provides an asynchronous interface for streaming agent events with multiple input patterns: - String input: Simple text input - ContentBlock list: Multi-modal content blocks - Message list: Complete messages with roles - No input: Use existing conversation history
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prompt
|
AgentInput
|
User input in various formats: - str: Simple text input - list[ContentBlock]: Multi-modal content blocks - list[Message]: Complete messages with roles - None: Use existing conversation history |
None
|
invocation_state
|
dict[str, Any] | None
|
Additional parameters to pass through the event loop. |
None
|
structured_output_model
|
type[BaseModel] | None
|
Pydantic model type(s) for structured output (overrides agent default). |
None
|
structured_output_prompt
|
str | None
|
Custom prompt for forcing structured output (overrides agent default). |
None
|
**kwargs
|
Any
|
Additional parameters to pass to the event loop.[Deprecating] |
{}
|
Yields:
| Type | Description |
|---|---|
AsyncIterator[Any]
|
An async iterator that yields events. Each event is a dictionary containing information about the current state of processing, such as:
|
Raises:
| Type | Description |
|---|---|
ConcurrencyException
|
If another invocation is already in progress on this agent instance. |
Exception
|
Any exceptions from the agent invocation will be propagated to the caller. |
Example
async for event in agent.stream_async("Analyze this data"):
if "data" in event:
yield event["data"]
Source code in strands/agent/agent.py
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 | |
structured_output(output_model, prompt=None)
¶
This method allows you to get structured output from the agent.
If you pass in a prompt, it will be used temporarily without adding it to the conversation history. If you don't pass in a prompt, it will use only the existing conversation history to respond.
For smaller models, you may want to use the optional prompt to add additional instructions to explicitly instruct the model to output the structured data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
output_model
|
type[T]
|
The output model (a JSON schema written as a Pydantic BaseModel) that the agent will use when responding. |
required |
prompt
|
AgentInput
|
The prompt to use for the agent in various formats: - str: Simple text input - list[ContentBlock]: Multi-modal content blocks - list[Message]: Complete messages with roles - None: Use existing conversation history |
None
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If no conversation history or prompt is provided. |
Source code in strands/agent/agent.py
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 | |
structured_output_async(output_model, prompt=None)
async
¶
This method allows you to get structured output from the agent.
If you pass in a prompt, it will be used temporarily without adding it to the conversation history. If you don't pass in a prompt, it will use only the existing conversation history to respond.
For smaller models, you may want to use the optional prompt to add additional instructions to explicitly instruct the model to output the structured data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
output_model
|
type[T]
|
The output model (a JSON schema written as a Pydantic BaseModel) that the agent will use when responding. |
required |
prompt
|
AgentInput
|
The prompt to use for the agent (will not be added to conversation history). |
None
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If no conversation history or prompt is provided. |
-
Source code in strands/agent/agent.py
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 | |
BeforeModelCallEvent
dataclass
¶
Bases: HookEvent
Event triggered before the model is invoked.
This event is fired just before the agent calls the model for inference, allowing hook providers to inspect or modify the messages and configuration that will be sent to the model.
Note: This event is not fired for invocations to structured_output.
Attributes:
| Name | Type | Description |
|---|---|---|
invocation_state |
dict[str, Any]
|
State and configuration passed through the agent invocation. This can include shared context for multi-agent coordination, request tracking, and dynamic configuration. |
Source code in strands/hooks/events.py
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | |
ContextWindowOverflowException
¶
Bases: Exception
Exception raised when the context window is exceeded.
This exception is raised when the input to a model exceeds the maximum context window size that the model can handle. This typically occurs when the combined length of the conversation history, system prompt, and current message is too large for the model to process.
Source code in strands/types/exceptions.py
38 39 40 41 42 43 44 45 46 | |
EventLoopException
¶
Bases: Exception
Exception raised by the event loop.
Source code in strands/types/exceptions.py
6 7 8 9 10 11 12 13 14 15 16 17 18 | |
__init__(original_exception, request_state=None)
¶
Initialize exception.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
original_exception
|
Exception
|
The original exception that was raised. |
required |
request_state
|
Any
|
The state of the request at the time of the exception. |
None
|
Source code in strands/types/exceptions.py
9 10 11 12 13 14 15 16 17 18 | |
EventLoopStopEvent
¶
Bases: TypedEvent
Event emitted when the agent execution completes normally.
Source code in strands/types/_events.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 | |
__init__(stop_reason, message, metrics, request_state, interrupts=None, structured_output=None)
¶
Initialize with the final execution results.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stop_reason
|
StopReason
|
Why the agent execution stopped |
required |
message
|
Message
|
Final message from the model |
required |
metrics
|
EventLoopMetrics
|
Execution metrics and performance data |
required |
request_state
|
Any
|
Final state of the agent execution |
required |
interrupts
|
Sequence[Interrupt] | None
|
Interrupts raised by user during agent execution. |
None
|
structured_output
|
BaseModel | None
|
Optional structured output result |
None
|
Source code in strands/types/_events.py
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | |
ForceStopEvent
¶
Bases: TypedEvent
Event emitted when the agent execution is forcibly stopped, either by a tool or by an exception.
Source code in strands/types/_events.py
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | |
__init__(reason)
¶
Initialize with the reason for forced stop.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
reason
|
str | Exception
|
String description or exception that caused the forced stop |
required |
Source code in strands/types/_events.py
398 399 400 401 402 403 404 405 406 407 408 409 | |
MaxTokensReachedException
¶
Bases: Exception
Exception raised when the model reaches its maximum token generation limit.
This exception is raised when the model stops generating tokens because it has reached the maximum number of tokens allowed for output generation. This can occur when the model's max_tokens parameter is set too low for the complexity of the response, or when the model naturally reaches its configured output limit during generation.
Source code in strands/types/exceptions.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | |
__init__(message)
¶
Initialize the exception with an error message and the incomplete message object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
str
|
The error message describing the token limit issue |
required |
Source code in strands/types/exceptions.py
29 30 31 32 33 34 35 | |
Message
¶
Bases: TypedDict
A message in a conversation with the agent.
Attributes:
| Name | Type | Description |
|---|---|---|
content |
list[ContentBlock]
|
The message content. |
role |
Role
|
The role of the message sender. |
Source code in strands/types/content.py
178 179 180 181 182 183 184 185 186 187 | |
MessageAddedEvent
dataclass
¶
Bases: HookEvent
Event triggered when a message is added to the agent's conversation.
This event is fired whenever the agent adds a new message to its internal message history, including user messages, assistant responses, and tool results. Hook providers can use this event for logging, monitoring, or implementing custom message processing logic.
Note: This event is only triggered for messages added by the framework itself, not for messages manually added by tools or external code.
Attributes:
| Name | Type | Description |
|---|---|---|
message |
Message
|
The message that was added to the conversation history. |
Source code in strands/hooks/events.py
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | |
ModelMessageEvent
¶
Bases: TypedEvent
Event emitted when the model invocation has completed.
This event is fired whenever the model generates a response message that gets added to the conversation history.
Source code in strands/types/_events.py
362 363 364 365 366 367 368 369 370 371 372 373 374 375 | |
__init__(message)
¶
Initialize with the model-generated message.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
Message
|
The response message from the model |
required |
Source code in strands/types/_events.py
369 370 371 372 373 374 375 | |
ModelRetryStrategy
¶
Bases: HookProvider
Default retry strategy for model throttling with exponential backoff.
Retries model calls on ModelThrottledException using exponential backoff. Delay doubles after each attempt: initial_delay, initial_delay2, initial_delay4, etc., capped at max_delay. State resets after successful calls.
With defaults (initial_delay=4, max_delay=240, max_attempts=6), delays are: 4s → 8s → 16s → 32s → 64s (5 retries before giving up on the 6th attempt).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
max_attempts
|
int
|
Total model attempts before re-raising the exception. |
6
|
initial_delay
|
int
|
Base delay in seconds; used for first two retries, then doubles. |
4
|
max_delay
|
int
|
Upper bound in seconds for the exponential backoff. |
240
|
Source code in strands/event_loop/_retry.py
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 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 | |
__init__(*, max_attempts=6, initial_delay=4, max_delay=240)
¶
Initialize the retry strategy.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
max_attempts
|
int
|
Total model attempts before re-raising the exception. Defaults to 6. |
6
|
initial_delay
|
int
|
Base delay in seconds; used for first two retries, then doubles. Defaults to 4. |
4
|
max_delay
|
int
|
Upper bound in seconds for the exponential backoff. Defaults to 240. |
240
|
Source code in strands/event_loop/_retry.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | |
register_hooks(registry, **kwargs)
¶
Register callbacks for AfterModelCallEvent and AfterInvocationEvent.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
registry
|
HookRegistry
|
The hook registry to register callbacks with. |
required |
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Source code in strands/event_loop/_retry.py
58 59 60 61 62 63 64 65 66 | |
ModelStopReason
¶
Bases: TypedEvent
Event emitted during reasoning signature streaming.
Source code in strands/types/_events.py
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | |
__init__(stop_reason, message, usage, metrics)
¶
Initialize with the final execution results.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stop_reason
|
StopReason
|
Why the agent execution stopped |
required |
message
|
Message
|
Final message from the model |
required |
usage
|
Usage
|
Usage information from the model |
required |
metrics
|
Metrics
|
Execution metrics and performance data |
required |
Source code in strands/types/_events.py
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | |
StartEvent
¶
Bases: TypedEvent
Event emitted at the start of each event loop cycle.
!!deprecated!! Use StartEventLoopEvent instead.
This event events the beginning of a new processing cycle within the agent's event loop. It's fired before model invocation and tool execution begin.
Source code in strands/types/_events.py
75 76 77 78 79 80 81 82 83 84 85 86 87 | |
__init__()
¶
Initialize the event loop start event.
Source code in strands/types/_events.py
85 86 87 | |
StartEventLoopEvent
¶
Bases: TypedEvent
Event emitted when the event loop cycle begins processing.
This event is fired after StartEvent and indicates that the event loop has begun its core processing logic, including model invocation preparation.
Source code in strands/types/_events.py
90 91 92 93 94 95 96 97 98 99 | |
__init__()
¶
Initialize the event loop processing start event.
Source code in strands/types/_events.py
97 98 99 | |
StructuredOutputContext
¶
Per-invocation context for structured output execution.
Source code in strands/tools/structured_output/_structured_output_context.py
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 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 | |
is_enabled
property
¶
Check if structured output is enabled for this context.
Returns:
| Type | Description |
|---|---|
bool
|
True if a structured output model is configured, False otherwise. |
__init__(structured_output_model=None, structured_output_prompt=None)
¶
Initialize a new structured output context.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
structured_output_model
|
type[BaseModel] | None
|
Optional Pydantic model type for structured output. |
None
|
structured_output_prompt
|
str | None
|
Optional custom prompt message to use when forcing structured output. Defaults to "You must format the previous response as structured output." |
None
|
Source code in strands/tools/structured_output/_structured_output_context.py
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 | |
cleanup(registry)
¶
Clean up the registered structured output tool from the registry.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
registry
|
ToolRegistry
|
The tool registry to clean up the tool from. |
required |
Source code in strands/tools/structured_output/_structured_output_context.py
144 145 146 147 148 149 150 151 152 | |
extract_result(tool_uses)
¶
Extract and remove structured output result from stored results.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_uses
|
list[ToolUse]
|
List of tool use dictionaries from the current execution cycle. |
required |
Returns:
| Type | Description |
|---|---|
BaseModel | None
|
The structured output result if found, or None if no result available. |
Source code in strands/tools/structured_output/_structured_output_context.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | |
get_result(tool_use_id)
¶
Retrieve a stored structured output result.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_use_id
|
str
|
Unique identifier for the tool use. |
required |
Returns:
| Type | Description |
|---|---|
BaseModel | None
|
The validated Pydantic model instance, or None if not found. |
Source code in strands/tools/structured_output/_structured_output_context.py
66 67 68 69 70 71 72 73 74 75 | |
get_tool_spec()
¶
Get the tool specification for structured output.
Returns:
| Type | Description |
|---|---|
ToolSpec | None
|
Tool specification, or None if no structured output model. |
Source code in strands/tools/structured_output/_structured_output_context.py
103 104 105 106 107 108 109 110 111 | |
has_structured_output_tool(tool_uses)
¶
Check if any tool uses are for the structured output tool.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_uses
|
list[ToolUse]
|
List of tool use dictionaries to check. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if any tool use matches the expected structured output tool name, |
bool
|
False if no structured output tool is present or expected. |
Source code in strands/tools/structured_output/_structured_output_context.py
89 90 91 92 93 94 95 96 97 98 99 100 101 | |
register_tool(registry)
¶
Register the structured output tool with the registry.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
registry
|
ToolRegistry
|
The tool registry to register the tool with. |
required |
Source code in strands/tools/structured_output/_structured_output_context.py
134 135 136 137 138 139 140 141 142 | |
set_forced_mode(tool_choice=None)
¶
Mark this context as being in forced structured output mode.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_choice
|
dict | None
|
Optional tool choice configuration. |
None
|
Source code in strands/tools/structured_output/_structured_output_context.py
77 78 79 80 81 82 83 84 85 86 87 | |
store_result(tool_use_id, result)
¶
Store a validated structured output result.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_use_id
|
str
|
Unique identifier for the tool use. |
required |
result
|
BaseModel
|
Validated Pydantic model instance. |
required |
Source code in strands/tools/structured_output/_structured_output_context.py
57 58 59 60 61 62 63 64 | |
StructuredOutputEvent
¶
Bases: TypedEvent
Event emitted when structured output is detected and processed.
Source code in strands/types/_events.py
248 249 250 251 252 253 254 255 256 257 | |
__init__(structured_output)
¶
Initialize with the structured output result.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
structured_output
|
BaseModel
|
The parsed structured output instance |
required |
Source code in strands/types/_events.py
251 252 253 254 255 256 257 | |
StructuredOutputException
¶
Bases: Exception
Exception raised when structured output validation fails after maximum retry attempts.
Source code in strands/types/exceptions.py
86 87 88 89 90 91 92 93 94 95 96 | |
__init__(message)
¶
Initialize the exception with details about the failure.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
str
|
The error message describing the structured output failure |
required |
Source code in strands/types/exceptions.py
89 90 91 92 93 94 95 96 | |
ToolInterruptEvent
¶
Bases: TypedEvent
Event emitted when a tool is interrupted.
Source code in strands/types/_events.py
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | |
interrupts
property
¶
The interrupt instances.
tool_use_id
property
¶
The id of the tool interrupted.
__init__(tool_use, interrupts)
¶
Set interrupt in the event payload.
Source code in strands/types/_events.py
347 348 349 | |
ToolResult
¶
Bases: TypedDict
Result of a tool execution.
Attributes:
| Name | Type | Description |
|---|---|---|
content |
list[ToolResultContent]
|
List of result content returned by the tool. |
status |
ToolResultStatus
|
The status of the tool execution ("success" or "error"). |
toolUseId |
str
|
The unique identifier of the tool use request that produced this result. |
Source code in strands/types/tools.py
88 89 90 91 92 93 94 95 96 97 98 99 | |
ToolResultMessageEvent
¶
Bases: TypedEvent
Event emitted when tool results are formatted as a message.
This event is fired when tool execution results are converted into a message format to be added to the conversation history. It provides access to the formatted message containing tool results.
Source code in strands/types/_events.py
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 | |
__init__(message)
¶
Initialize with the model-generated message.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
Any
|
Message containing tool results for conversation history |
required |
Source code in strands/types/_events.py
386 387 388 389 390 391 392 | |
ToolUse
¶
Bases: TypedDict
A request from the model to use a specific tool with the provided input.
Attributes:
| Name | Type | Description |
|---|---|---|
input |
Any
|
The input parameters for the tool. Can be any JSON-serializable type. |
name |
str
|
The name of the tool to invoke. |
toolUseId |
str
|
A unique identifier for this specific tool use request. |
Source code in strands/types/tools.py
53 54 55 56 57 58 59 60 61 62 63 64 65 | |
Trace
¶
A trace representing a single operation or step in the execution flow.
Source code in strands/telemetry/metrics.py
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 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 | |
__init__(name, parent_id=None, start_time=None, raw_name=None, metadata=None, message=None)
¶
Initialize a new trace.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Human-readable name of the operation being traced. |
required |
parent_id
|
str | None
|
ID of the parent trace, if this is a child operation. |
None
|
start_time
|
float | None
|
Timestamp when the trace started. If not provided, the current time will be used. |
None
|
raw_name
|
str | None
|
System level name. |
None
|
metadata
|
dict[str, Any] | None
|
Additional contextual information about the trace. |
None
|
message
|
Message | None
|
Message associated with the trace. |
None
|
Source code in strands/telemetry/metrics.py
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_child(child)
¶
Add a child trace to this trace.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
child
|
Trace
|
The child trace to add. |
required |
Source code in strands/telemetry/metrics.py
63 64 65 66 67 68 69 | |
add_message(message)
¶
Add a message to the trace.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
Message
|
The message to add. |
required |
Source code in strands/telemetry/metrics.py
79 80 81 82 83 84 85 | |
duration()
¶
Calculate the duration of this trace.
Returns:
| Type | Description |
|---|---|
float | None
|
The duration in seconds, or None if the trace hasn't ended yet. |
Source code in strands/telemetry/metrics.py
71 72 73 74 75 76 77 | |
end(end_time=None)
¶
Mark the trace as complete with the given or current timestamp.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
end_time
|
float | None
|
Timestamp to use as the end time. If not provided, the current time will be used. |
None
|
Source code in strands/telemetry/metrics.py
54 55 56 57 58 59 60 61 | |
to_dict()
¶
Convert the trace to a dictionary representation.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
A dictionary containing all trace information, suitable for serialization. |
Source code in strands/telemetry/metrics.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
Tracer
¶
Handles OpenTelemetry tracing.
This class provides a simple interface for creating and managing traces, with support for sending to OTLP endpoints.
When the OTEL_EXPORTER_OTLP_ENDPOINT environment variable is set, traces are sent to the OTLP endpoint.
Both attributes are controlled by including "gen_ai_latest_experimental" or "gen_ai_tool_definitions", respectively, in the OTEL_SEMCONV_STABILITY_OPT_IN environment variable.
Source code in strands/telemetry/tracer.py
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 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 | |
__init__()
¶
Initialize the tracer.
Source code in strands/telemetry/tracer.py
90 91 92 93 94 95 96 97 98 99 100 101 102 | |
end_agent_span(span, response=None, error=None)
¶
End an agent span with results and metrics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
span
|
Span
|
The span to end. |
required |
response
|
AgentResult | None
|
The response from the agent. |
None
|
error
|
Exception | None
|
Any error that occurred. |
None
|
Source code in strands/telemetry/tracer.py
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 | |
end_event_loop_cycle_span(span, message, tool_result_message=None)
¶
End an event loop cycle span with results.
Note: The span is automatically closed and exceptions recorded. This method just sets the necessary attributes. Status in the span is automatically set to UNSET (OK) on success or ERROR on exception.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
span
|
Span
|
The span to set attributes on. |
required |
message
|
Message
|
The message response from this cycle. |
required |
tool_result_message
|
Message | None
|
Optional tool result message if a tool was called. |
None
|
Source code in strands/telemetry/tracer.py
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 | |
end_model_invoke_span(span, message, usage, metrics, stop_reason)
¶
End a model invocation span with results and metrics.
Note: The span is automatically closed and exceptions recorded. This method just sets the necessary attributes. Status in the span is automatically set to UNSET (OK) on success or ERROR on exception.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
span
|
Span
|
The span to set attributes on. |
required |
message
|
Message
|
The message response from the model. |
required |
usage
|
Usage
|
Token usage information from the model call. |
required |
metrics
|
Metrics
|
Metrics from the model call. |
required |
stop_reason
|
StopReason
|
The reason the model stopped generating. |
required |
Source code in strands/telemetry/tracer.py
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 | |
end_span_with_error(span, error_message, exception=None)
¶
End a span with error status.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
span
|
Span
|
The span to end. |
required |
error_message
|
str
|
Error message to set in the span status. |
required |
exception
|
Exception | None
|
Optional exception to record in the span. |
None
|
Source code in strands/telemetry/tracer.py
225 226 227 228 229 230 231 232 233 234 235 236 237 | |
end_swarm_span(span, result=None)
¶
End a swarm span with results.
Source code in strands/telemetry/tracer.py
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 | |
end_tool_call_span(span, tool_result, error=None)
¶
End a tool call span with results.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
span
|
Span
|
The span to end. |
required |
tool_result
|
ToolResult | None
|
The result from the tool execution. |
required |
error
|
Exception | None
|
Optional exception if the tool call failed. |
None
|
Source code in strands/telemetry/tracer.py
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 | |
start_agent_span(messages, agent_name, model_id=None, tools=None, custom_trace_attributes=None, tools_config=None, **kwargs)
¶
Start a new span for an agent invocation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
|
Messages
|
List of messages being sent to the agent. |
required |
agent_name
|
str
|
Name of the agent. |
required |
model_id
|
str | None
|
Optional model identifier. |
None
|
tools
|
list | None
|
Optional list of tools being used. |
None
|
custom_trace_attributes
|
Mapping[str, AttributeValue] | None
|
Optional mapping of custom trace attributes to include in the span. |
None
|
tools_config
|
dict | None
|
Optional dictionary of tool configurations. |
None
|
**kwargs
|
Any
|
Additional attributes to add to the span. |
{}
|
Returns:
| Type | Description |
|---|---|
Span
|
The created span, or None if tracing is not enabled. |
Source code in strands/telemetry/tracer.py
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 | |
start_event_loop_cycle_span(invocation_state, messages, parent_span=None, custom_trace_attributes=None, **kwargs)
¶
Start a new span for an event loop cycle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
invocation_state
|
Any
|
Arguments for the event loop cycle. |
required |
parent_span
|
Span | None
|
Optional parent span to link this span to. |
None
|
messages
|
Messages
|
Messages being processed in this cycle. |
required |
custom_trace_attributes
|
Mapping[str, AttributeValue] | None
|
Optional mapping of custom trace attributes to include in the span. |
None
|
**kwargs
|
Any
|
Additional attributes to add to the span. |
{}
|
Returns:
| Type | Description |
|---|---|
Span
|
The created span, or None if tracing is not enabled. |
Source code in strands/telemetry/tracer.py
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 | |
start_model_invoke_span(messages, parent_span=None, model_id=None, custom_trace_attributes=None, **kwargs)
¶
Start a new span for a model invocation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
|
Messages
|
Messages being sent to the model. |
required |
parent_span
|
Span | None
|
Optional parent span to link this span to. |
None
|
model_id
|
str | None
|
Optional identifier for the model being invoked. |
None
|
custom_trace_attributes
|
Mapping[str, AttributeValue] | None
|
Optional mapping of custom trace attributes to include in the span. |
None
|
**kwargs
|
Any
|
Additional attributes to add to the span. |
{}
|
Returns:
| Type | Description |
|---|---|
Span
|
The created span, or None if tracing is not enabled. |
Source code in strands/telemetry/tracer.py
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 | |
start_multiagent_span(task, instance, custom_trace_attributes=None)
¶
Start a new span for swarm invocation.
Source code in strands/telemetry/tracer.py
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 | |
start_tool_call_span(tool, parent_span=None, custom_trace_attributes=None, **kwargs)
¶
Start a new span for a tool call.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool
|
ToolUse
|
The tool being used. |
required |
parent_span
|
Span | None
|
Optional parent span to link this span to. |
None
|
custom_trace_attributes
|
Mapping[str, AttributeValue] | None
|
Optional mapping of custom trace attributes to include in the span. |
None
|
**kwargs
|
Any
|
Additional attributes to add to the span. |
{}
|
Returns:
| Type | Description |
|---|---|
Span
|
The created span, or None if tracing is not enabled. |
Source code in strands/telemetry/tracer.py
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 | |
TypedEvent
¶
Bases: dict
Base class for all typed events in the agent system.
Source code in strands/types/_events.py
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 53 | |
is_callback_event
property
¶
True if this event should trigger the callback_handler to fire.
__init__(data=None)
¶
Initialize the typed event with optional data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict[str, Any] | None
|
Optional dictionary of event data to initialize with |
None
|
Source code in strands/types/_events.py
30 31 32 33 34 35 36 | |
as_dict()
¶
Convert this event to a raw dictionary for emitting purposes.
Source code in strands/types/_events.py
43 44 45 | |
prepare(invocation_state)
¶
Prepare the event for emission by adding invocation state.
This allows a subset of events to merge with the invocation_state without needing to pass around the invocation_state throughout the system.
Source code in strands/types/_events.py
47 48 49 50 51 52 53 | |
_handle_model_execution(agent, cycle_span, cycle_trace, invocation_state, tracer, structured_output_context)
async
¶
Handle model execution with retry logic for throttling exceptions.
Executes the model inference with automatic retry handling for throttling exceptions. Manages tracing, hooks, and metrics collection throughout the process.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
agent
|
Agent
|
The agent executing the model. |
required |
cycle_span
|
Any
|
Span object for tracing the cycle. |
required |
cycle_trace
|
Trace
|
Trace object for the current event loop cycle. |
required |
invocation_state
|
dict[str, Any]
|
State maintained across cycles. |
required |
tracer
|
Tracer
|
Tracer instance for span management. |
required |
structured_output_context
|
StructuredOutputContext
|
Context for structured output management. |
required |
Yields:
| Type | Description |
|---|---|
AsyncGenerator[TypedEvent, None]
|
Model stream events and throttle events during retries. |
Raises:
| Type | Description |
|---|---|
ModelThrottledException
|
If max retry attempts are exceeded. |
Exception
|
Any other model execution errors. |
Source code in strands/event_loop/event_loop.py
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 | |
_handle_tool_execution(stop_reason, message, agent, cycle_trace, cycle_span, cycle_start_time, invocation_state, tracer, structured_output_context)
async
¶
Handles the execution of tools requested by the model during an event loop cycle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stop_reason
|
StopReason
|
The reason the model stopped generating. |
required |
message
|
Message
|
The message from the model that may contain tool use requests. |
required |
agent
|
Agent
|
Agent for which tools are being executed. |
required |
cycle_trace
|
Trace
|
Trace object for the current event loop cycle. |
required |
cycle_span
|
Any
|
Span object for tracing the cycle (type may vary). |
required |
cycle_start_time
|
float
|
Start time of the current cycle. |
required |
invocation_state
|
dict[str, Any]
|
Additional keyword arguments, including request state. |
required |
tracer
|
Tracer
|
Tracer instance for span management. |
required |
structured_output_context
|
StructuredOutputContext
|
Optional context for structured output management. |
required |
Yields:
| Name | Type | Description |
|---|---|---|
AsyncGenerator[TypedEvent, None]
|
Tool stream events along with events yielded from a recursive call to the event loop. The last event is a tuple |
|
containing |
AsyncGenerator[TypedEvent, None]
|
|
Source code in strands/event_loop/event_loop.py
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 | |
_has_tool_use_in_latest_message(messages)
¶
Check if the latest message contains any ToolUse content blocks.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
|
Messages
|
List of messages in the conversation. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if the latest message contains at least one ToolUse content block, False otherwise. |
Source code in strands/event_loop/event_loop.py
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | |
event_loop_cycle(agent, invocation_state, structured_output_context=None)
async
¶
Execute a single cycle of the event loop.
This core function processes a single conversation turn, handling model inference, tool execution, and error recovery. It manages the entire lifecycle of a conversation turn, including:
- Initializing cycle state and metrics
- Checking execution limits
- Processing messages with the model
- Handling tool execution requests
- Managing recursive calls for multi-turn tool interactions
- Collecting and reporting metrics
- Error handling and recovery
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
agent
|
Agent
|
The agent for which the cycle is being executed. |
required |
invocation_state
|
dict[str, Any]
|
Additional arguments including:
|
required |
structured_output_context
|
StructuredOutputContext | None
|
Optional context for structured output management. |
None
|
Yields:
| Type | Description |
|---|---|
AsyncGenerator[TypedEvent, None]
|
Model and tool stream events. The last event is a tuple containing:
|
Raises:
| Type | Description |
|---|---|
EventLoopException
|
If an error occurs during execution |
ContextWindowOverflowException
|
If the input is too large for the model |
Source code in strands/event_loop/event_loop.py
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 | |
get_tracer()
¶
Get or create the global tracer.
Returns:
| Type | Description |
|---|---|
Tracer
|
The global tracer instance. |
Source code in strands/telemetry/tracer.py
880 881 882 883 884 885 886 887 888 889 890 891 | |
recover_message_on_max_tokens_reached(message)
¶
Recover and clean up messages when max token limits are reached.
When a model response is truncated due to maximum token limits, all tool use blocks should be replaced with informative error messages since they may be incomplete or unreliable. This function inspects the message content and:
- Identifies all tool use blocks (regardless of validity)
- Replaces all tool uses with informative error messages
- Preserves all non-tool content blocks (text, images, etc.)
- Returns a cleaned message suitable for conversation history
This recovery mechanism ensures that the conversation can continue gracefully even when model responses are truncated, providing clear feedback about what happened and preventing potentially incomplete or corrupted tool executions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
Message
|
The potentially incomplete message from the model that was truncated due to max token limits. |
required |
Returns:
| Type | Description |
|---|---|
Message
|
A cleaned Message with all tool uses replaced by explanatory text content. |
Message
|
The returned message maintains the same role as the input message. |
Example
If a message contains any tool use (complete or incomplete):
{"toolUse": {"name": "calculator", "input": {"expression": "2+2"}, "toolUseId": "123"}}
It will be replaced with:
{"text": "The selected tool calculator's tool use was incomplete due to maximum token limits being reached."}
Source code in strands/event_loop/_recover_message_on_max_tokens_reached.py
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | |
recurse_event_loop(agent, invocation_state, structured_output_context=None)
async
¶
Make a recursive call to event_loop_cycle with the current state.
This function is used when the event loop needs to continue processing after tool execution.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
agent
|
Agent
|
Agent for which the recursive call is being made. |
required |
invocation_state
|
dict[str, Any]
|
Arguments to pass through event_loop_cycle |
required |
structured_output_context
|
StructuredOutputContext | None
|
Optional context for structured output management. |
None
|
Yields:
| Type | Description |
|---|---|
AsyncGenerator[TypedEvent, None]
|
Results from event_loop_cycle where the last result contains:
|
Source code in strands/event_loop/event_loop.py
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 | |
stream_messages(model, system_prompt, messages, tool_specs, *, tool_choice=None, system_prompt_content=None, invocation_state=None, **kwargs)
async
¶
Streams messages to the model and processes the response.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Model
|
Model provider. |
required |
system_prompt
|
str | None
|
The system prompt string, used for backwards compatibility with models that expect it. |
required |
messages
|
Messages
|
List of messages to send. |
required |
tool_specs
|
list[ToolSpec]
|
The list of tool specs. |
required |
tool_choice
|
Any | None
|
Optional tool choice constraint for forcing specific tool usage. |
None
|
system_prompt_content
|
list[SystemContentBlock] | None
|
The authoritative system prompt content blocks that always contains the system prompt data. |
None
|
invocation_state
|
dict[str, Any] | None
|
Caller-provided state/context that was passed to the agent when it was invoked. |
None
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
| Type | Description |
|---|---|
AsyncGenerator[TypedEvent, None]
|
The reason for stopping, the final message, and the usage metrics |
Source code in strands/event_loop/streaming.py
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 | |
validate_and_prepare_tools(message, tool_uses, tool_results, invalid_tool_use_ids)
¶
Validate tool uses and prepare them for execution.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
Message
|
Current message. |
required |
tool_uses
|
list[ToolUse]
|
List to populate with tool uses. |
required |
tool_results
|
list[ToolResult]
|
List to populate with tool results for invalid tools. |
required |
invalid_tool_use_ids
|
list[str]
|
List to populate with invalid tool use IDs. |
required |
Source code in strands/tools/_validator.py
8 9 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 | |