strands.models.sagemaker
¶
Amazon SageMaker model provider.
Messages = List[Message]
module-attribute
¶
A list of messages representing a conversation.
T = TypeVar('T', bound=BaseModel)
module-attribute
¶
ToolChoice = Union[ToolChoiceAutoDict, ToolChoiceAnyDict, ToolChoiceToolDict]
module-attribute
¶
Configuration for how the model should choose tools.
- "auto": The model decides whether to use tools based on the context
- "any": The model must use at least one tool (any tool)
- "tool": The model must use the specified tool
logger = logging.getLogger(__name__)
module-attribute
¶
ContentBlock
¶
Bases: TypedDict
A block of content for a message that you pass to, or receive from, a model.
Attributes:
| Name | Type | Description |
|---|---|---|
cachePoint |
CachePoint
|
A cache point configuration to optimize conversation history. |
document |
DocumentContent
|
A document to include in the message. |
guardContent |
GuardContent
|
Contains the content to assess with the guardrail. |
image |
ImageContent
|
Image to include in the message. |
reasoningContent |
ReasoningContentBlock
|
Contains content regarding the reasoning that is carried out by the model. |
text |
str
|
Text to include in the message. |
toolResult |
ToolResult
|
The result for a tool request that a model makes. |
toolUse |
ToolUse
|
Information about a tool use request from a model. |
video |
VideoContent
|
Video to include in the message. |
citationsContent |
CitationsContentBlock
|
Contains the citations for a document. |
Source code in strands/types/content.py
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 | |
FunctionCall
dataclass
¶
Function call for the model.
Attributes:
| Name | Type | Description |
|---|---|---|
name |
Union[str, dict[Any, Any]]
|
Name of the function to call |
arguments |
Union[str, dict[Any, Any]]
|
Arguments to pass to the function |
Source code in strands/models/sagemaker.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | |
__init__(**kwargs)
¶
Initialize function call.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**kwargs
|
dict[str, str]
|
Keyword arguments for the function call. |
{}
|
Source code in strands/models/sagemaker.py
55 56 57 58 59 60 61 62 | |
OpenAIModel
¶
Bases: Model
OpenAI model provider implementation.
Source code in strands/models/openai.py
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 723 724 725 726 727 728 729 730 731 732 733 734 735 | |
OpenAIConfig
¶
Bases: TypedDict
Configuration options for OpenAI models.
Attributes:
| Name | Type | Description |
|---|---|---|
model_id |
str
|
Model ID (e.g., "gpt-4o"). For a complete list of supported models, see https://platform.openai.com/docs/models. |
params |
Optional[dict[str, Any]]
|
Model parameters (e.g., max_tokens). For a complete list of supported parameters, see https://platform.openai.com/docs/api-reference/chat/create. |
Source code in strands/models/openai.py
45 46 47 48 49 50 51 52 53 54 55 56 57 | |
__init__(client=None, client_args=None, **model_config)
¶
Initialize provider instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
client
|
Optional[Client]
|
Pre-configured OpenAI-compatible client to reuse across requests. When provided, this client will be reused for all requests and will NOT be closed by the model. The caller is responsible for managing the client lifecycle. This is useful for: - Injecting custom client wrappers (e.g., GuardrailsAsyncOpenAI) - Reusing connection pools within a single event loop/worker - Centralizing observability, retries, and networking policy - Pointing to custom model gateways Note: The client should not be shared across different asyncio event loops. |
None
|
client_args
|
Optional[dict[str, Any]]
|
Arguments for the OpenAI client (legacy approach). For a complete list of supported arguments, see https://pypi.org/project/openai/. |
None
|
**model_config
|
Unpack[OpenAIConfig]
|
Configuration options for the OpenAI model. |
{}
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If both |
Source code in strands/models/openai.py
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 | |
format_chunk(event, **kwargs)
¶
Format an OpenAI response event into a standardized message chunk.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
event
|
dict[str, Any]
|
A response event from the OpenAI compatible model. |
required |
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Returns:
| Type | Description |
|---|---|
StreamEvent
|
The formatted chunk. |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If chunk_type is not recognized. This error should never be encountered as chunk_type is controlled in the stream method. |
Source code in strands/models/openai.py
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 | |
format_request(messages, tool_specs=None, system_prompt=None, tool_choice=None, *, system_prompt_content=None, **kwargs)
¶
Format an OpenAI compatible chat streaming request.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
|
Messages
|
List of message objects to be processed by the model. |
required |
tool_specs
|
list[ToolSpec] | None
|
List of tool specifications to make available to the model. |
None
|
system_prompt
|
str | None
|
System prompt to provide context to the model. |
None
|
tool_choice
|
ToolChoice | None
|
Selection strategy for tool invocation. |
None
|
system_prompt_content
|
list[SystemContentBlock] | None
|
System prompt content blocks to provide context to the model. |
None
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
An OpenAI compatible chat streaming request. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If a message contains a content block type that cannot be converted to an OpenAI-compatible format. |
Source code in strands/models/openai.py
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 | |
format_request_message_content(content, **kwargs)
classmethod
¶
Format an OpenAI compatible content block.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
content
|
ContentBlock
|
Message content. |
required |
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
OpenAI compatible content block. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If the content block type cannot be converted to an OpenAI-compatible format. |
Source code in strands/models/openai.py
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 | |
format_request_message_tool_call(tool_use, **kwargs)
classmethod
¶
Format an OpenAI compatible tool call.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_use
|
ToolUse
|
Tool use requested by the model. |
required |
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
OpenAI compatible tool call. |
Source code in strands/models/openai.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | |
format_request_messages(messages, system_prompt=None, *, system_prompt_content=None, **kwargs)
classmethod
¶
Format an OpenAI compatible messages array.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
|
Messages
|
List of message objects to be processed by the model. |
required |
system_prompt
|
Optional[str]
|
System prompt to provide context to the model. |
None
|
system_prompt_content
|
Optional[list[SystemContentBlock]]
|
System prompt content blocks to provide context to the model. |
None
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Returns:
| Type | Description |
|---|---|
list[dict[str, Any]]
|
An OpenAI compatible messages array. |
Source code in strands/models/openai.py
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 | |
format_request_tool_message(tool_result, **kwargs)
classmethod
¶
Format an OpenAI compatible tool message.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_result
|
ToolResult
|
Tool result collected from a tool execution. |
required |
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
OpenAI compatible tool message. |
Source code in strands/models/openai.py
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | |
get_config()
¶
Get the OpenAI model configuration.
Returns:
| Type | Description |
|---|---|
OpenAIConfig
|
The OpenAI model configuration. |
Source code in strands/models/openai.py
106 107 108 109 110 111 112 113 | |
stream(messages, tool_specs=None, system_prompt=None, *, tool_choice=None, **kwargs)
async
¶
Stream conversation with the OpenAI model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
|
Messages
|
List of message objects to be processed by the model. |
required |
tool_specs
|
Optional[list[ToolSpec]]
|
List of tool specifications to make available to the model. |
None
|
system_prompt
|
Optional[str]
|
System prompt to provide context to the model. |
None
|
tool_choice
|
ToolChoice | None
|
Selection strategy for tool invocation. |
None
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
| Type | Description |
|---|---|
AsyncGenerator[StreamEvent, None]
|
Formatted message chunks from the model. |
Raises:
| Type | Description |
|---|---|
ContextWindowOverflowException
|
If the input exceeds the model's context window. |
ModelThrottledException
|
If the request is throttled by OpenAI (rate limits). |
Source code in strands/models/openai.py
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 | |
structured_output(output_model, prompt, system_prompt=None, **kwargs)
async
¶
Get structured output from the model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
output_model
|
Type[T]
|
The output model to use for the agent. |
required |
prompt
|
Messages
|
The prompt messages to use for the agent. |
required |
system_prompt
|
Optional[str]
|
System prompt to provide context to the model. |
None
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
| Type | Description |
|---|---|
AsyncGenerator[dict[str, Union[T, Any]], None]
|
Model events with the last being the structured output. |
Raises:
| Type | Description |
|---|---|
ContextWindowOverflowException
|
If the input exceeds the model's context window. |
ModelThrottledException
|
If the request is throttled by OpenAI (rate limits). |
Source code in strands/models/openai.py
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 | |
update_config(**model_config)
¶
Update the OpenAI model configuration with the provided arguments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**model_config
|
Unpack[OpenAIConfig]
|
Configuration overrides. |
{}
|
Source code in strands/models/openai.py
96 97 98 99 100 101 102 103 104 | |
SageMakerAIModel
¶
Bases: OpenAIModel
Amazon SageMaker model provider implementation.
Source code in strands/models/sagemaker.py
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 | |
SageMakerAIEndpointConfig
¶
Bases: TypedDict
Configuration options for SageMaker models.
Attributes:
| Name | Type | Description |
|---|---|---|
endpoint_name |
str
|
The name of the SageMaker endpoint to invoke |
inference_component_name |
Union[str, None]
|
The name of the inference component to use |
additional_args |
Optional[dict[str, Any]]
|
Other request parameters, as supported by https://bit.ly/sagemaker-invoke-endpoint-params |
Source code in strands/models/sagemaker.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | |
SageMakerAIPayloadSchema
¶
Bases: TypedDict
Payload schema for the Amazon SageMaker AI model.
Attributes:
| Name | Type | Description |
|---|---|---|
max_tokens |
int
|
Maximum number of tokens to generate in the completion |
stream |
bool
|
Whether to stream the response |
temperature |
Optional[float]
|
Sampling temperature to use for the model (optional) |
top_p |
Optional[float]
|
Nucleus sampling parameter (optional) |
top_k |
Optional[int]
|
Top-k sampling parameter (optional) |
stop |
Optional[list[str]]
|
List of stop sequences to use for the model (optional) |
tool_results_as_user_messages |
Optional[bool]
|
Convert tool result to user messages (optional) |
additional_args |
Optional[dict[str, Any]]
|
Additional request parameters, as supported by https://bit.ly/djl-lmi-request-schema |
Source code in strands/models/sagemaker.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | |
__init__(endpoint_config, payload_config, boto_session=None, boto_client_config=None)
¶
Initialize provider instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
endpoint_config
|
SageMakerAIEndpointConfig
|
Endpoint configuration for SageMaker. |
required |
payload_config
|
SageMakerAIPayloadSchema
|
Payload configuration for the model. |
required |
boto_session
|
Optional[Session]
|
Boto Session to use when calling the SageMaker Runtime. |
None
|
boto_client_config
|
Optional[Config]
|
Configuration to use when creating the SageMaker-Runtime Boto Client. |
None
|
Source code in strands/models/sagemaker.py
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 | |
format_request(messages, tool_specs=None, system_prompt=None, tool_choice=None, **kwargs)
¶
Format an Amazon SageMaker chat streaming request.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
|
Messages
|
List of message objects to be processed by the model. |
required |
tool_specs
|
Optional[list[ToolSpec]]
|
List of tool specifications to make available to the model. |
None
|
system_prompt
|
Optional[str]
|
System prompt to provide context to the model. |
None
|
tool_choice
|
ToolChoice | None
|
Selection strategy for tool invocation. Note: This parameter is accepted for interface consistency but is currently ignored for this model provider. |
None
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
An Amazon SageMaker chat streaming request. |
Source code in strands/models/sagemaker.py
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 | |
format_request_message_content(content, **kwargs)
classmethod
¶
Format a content block.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
content
|
ContentBlock
|
Message content. |
required |
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
Formatted content block. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If the content block type cannot be converted to a SageMaker-compatible format. |
Source code in strands/models/sagemaker.py
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 | |
format_request_tool_message(tool_result, **kwargs)
classmethod
¶
Format a SageMaker compatible tool message.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_result
|
ToolResult
|
Tool result collected from a tool execution. |
required |
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
SageMaker compatible tool message with content as a string. |
Source code in strands/models/sagemaker.py
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 | |
get_config()
¶
Get the Amazon SageMaker model configuration.
Returns:
| Type | Description |
|---|---|
SageMakerAIEndpointConfig
|
The Amazon SageMaker model configuration. |
Source code in strands/models/sagemaker.py
189 190 191 192 193 194 195 196 | |
stream(messages, tool_specs=None, system_prompt=None, *, tool_choice=None, **kwargs)
async
¶
Stream conversation with the SageMaker model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
|
Messages
|
List of message objects to be processed by the model. |
required |
tool_specs
|
Optional[list[ToolSpec]]
|
List of tool specifications to make available to the model. |
None
|
system_prompt
|
Optional[str]
|
System prompt to provide context to the model. |
None
|
tool_choice
|
ToolChoice | None
|
Selection strategy for tool invocation. Note: This parameter is accepted for interface consistency but is currently ignored for this model provider. |
None
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
| Type | Description |
|---|---|
AsyncGenerator[StreamEvent, None]
|
Formatted message chunks from the model. |
Source code in strands/models/sagemaker.py
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 | |
structured_output(output_model, prompt, system_prompt=None, **kwargs)
async
¶
Get structured output from the model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
output_model
|
Type[T]
|
The output model to use for the agent. |
required |
prompt
|
Messages
|
The prompt messages to use for the agent. |
required |
system_prompt
|
Optional[str]
|
System prompt to provide context to the model. |
None
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
| Type | Description |
|---|---|
AsyncGenerator[dict[str, Union[T, Any]], None]
|
Model events with the last being the structured output. |
Source code in strands/models/sagemaker.py
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 | |
update_config(**endpoint_config)
¶
Update the Amazon SageMaker model configuration with the provided arguments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**endpoint_config
|
Unpack[SageMakerAIEndpointConfig]
|
Configuration overrides. |
{}
|
Source code in strands/models/sagemaker.py
179 180 181 182 183 184 185 186 187 | |
StreamEvent
¶
Bases: TypedDict
The messages output stream.
Attributes:
| Name | Type | Description |
|---|---|---|
contentBlockDelta |
ContentBlockDeltaEvent
|
Delta content for a content block. |
contentBlockStart |
ContentBlockStartEvent
|
Start of a content block. |
contentBlockStop |
ContentBlockStopEvent
|
End of a content block. |
internalServerException |
ExceptionEvent
|
Internal server error information. |
messageStart |
MessageStartEvent
|
Start of a message. |
messageStop |
MessageStopEvent
|
End of a message. |
metadata |
MetadataEvent
|
Metadata about the streaming response. |
modelStreamErrorException |
ModelStreamErrorEvent
|
Model streaming error information. |
serviceUnavailableException |
ExceptionEvent
|
Service unavailable error information. |
throttlingException |
ExceptionEvent
|
Throttling error information. |
validationException |
ExceptionEvent
|
Validation error information. |
Source code in strands/types/streaming.py
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 | |
ToolCall
dataclass
¶
Tool call for the model object.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
str
|
Tool call ID |
type |
Literal['function']
|
Tool call type |
function |
FunctionCall
|
Tool call function |
Source code in strands/models/sagemaker.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | |
__init__(**kwargs)
¶
Initialize tool call object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**kwargs
|
dict
|
Keyword arguments for the tool call. |
{}
|
Source code in strands/models/sagemaker.py
79 80 81 82 83 84 85 86 87 | |
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
87 88 89 90 91 92 93 94 95 96 97 98 | |
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 | |
UsageMetadata
dataclass
¶
Usage metadata for the model.
Attributes:
| Name | Type | Description |
|---|---|---|
total_tokens |
int
|
Total number of tokens used in the request |
completion_tokens |
int
|
Number of tokens used in the completion |
prompt_tokens |
int
|
Number of tokens used in the prompt |
prompt_tokens_details |
Optional[int]
|
Additional information about the prompt tokens (optional) |
Source code in strands/models/sagemaker.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | |
validate_config_keys(config_dict, config_class)
¶
Validate that config keys match the TypedDict fields.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_dict
|
Mapping[str, Any]
|
Dictionary of configuration parameters |
required |
config_class
|
Type
|
TypedDict class to validate against |
required |
Source code in strands/models/_validation.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | |
warn_on_tool_choice_not_supported(tool_choice)
¶
Emits a warning if a tool choice is provided but not supported by the provider.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_choice
|
ToolChoice | None
|
the tool_choice provided to the provider |
required |
Source code in strands/models/_validation.py
32 33 34 35 36 37 38 39 40 41 42 | |