strands.models
¶
SDK model providers.
This package includes an abstract base Model class along with concrete implementations for specific providers.
strands.models.model
¶
Abstract base class for Agent model providers.
Model
¶
Bases: ABC
Abstract base class for Agent model providers.
This class defines the interface for all model implementations in the Strands Agents SDK. It provides a standardized way to configure and process requests for different AI model providers.
Source code in strands/models/model.py
get_config()
abstractmethod
¶
Return the model configuration.
Returns:
Type | Description |
---|---|
Any
|
The model's configuration. |
stream(messages, tool_specs=None, system_prompt=None, **kwargs)
abstractmethod
¶
Stream conversation with the model.
This method handles the full lifecycle of conversing with the model:
- Format the messages, tool specs, and configuration into a streaming request
- Send the request to the model
- Yield the formatted message chunks
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
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
Type | Description |
---|---|
AsyncIterable[StreamEvent]
|
Formatted message chunks from the model. |
Raises:
Type | Description |
---|---|
ModelThrottledException
|
When the model service is throttling requests from the client. |
Source code in strands/models/model.py
structured_output(output_model, prompt, system_prompt=None, **kwargs)
abstractmethod
¶
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 |
---|---|
ValidationException
|
The response format from the model does not match the output_model |
Source code in strands/models/model.py
update_config(**model_config)
abstractmethod
¶
Update the model configuration with the provided arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**model_config
|
Any
|
Configuration overrides. |
{}
|
strands.models.bedrock
¶
AWS Bedrock model provider.
- Docs: https://aws.amazon.com/bedrock/
BedrockModel
¶
Bases: Model
AWS Bedrock model provider implementation.
The implementation handles Bedrock-specific features such as:
- Tool configuration for function calling
- Guardrails integration
- Caching points for system prompts and tools
- Streaming responses
- Context window overflow detection
Source code in strands/models/bedrock.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 |
|
BedrockConfig
¶
Bases: TypedDict
Configuration options for Bedrock models.
Attributes:
Name | Type | Description |
---|---|---|
additional_args |
Optional[dict[str, Any]]
|
Any additional arguments to include in the request |
additional_request_fields |
Optional[dict[str, Any]]
|
Additional fields to include in the Bedrock request |
additional_response_field_paths |
Optional[list[str]]
|
Additional response field paths to extract |
cache_prompt |
Optional[str]
|
Cache point type for the system prompt |
cache_tools |
Optional[str]
|
Cache point type for tools |
guardrail_id |
Optional[str]
|
ID of the guardrail to apply |
guardrail_trace |
Optional[Literal['enabled', 'disabled', 'enabled_full']]
|
Guardrail trace mode. Defaults to enabled. |
guardrail_version |
Optional[str]
|
Version of the guardrail to apply |
guardrail_stream_processing_mode |
Optional[Literal['sync', 'async']]
|
The guardrail processing mode |
guardrail_redact_input |
Optional[bool]
|
Flag to redact input if a guardrail is triggered. Defaults to True. |
guardrail_redact_input_message |
Optional[str]
|
If a Bedrock Input guardrail triggers, replace the input with this message. |
guardrail_redact_output |
Optional[bool]
|
Flag to redact output if guardrail is triggered. Defaults to False. |
guardrail_redact_output_message |
Optional[str]
|
If a Bedrock Output guardrail triggers, replace output with this message. |
max_tokens |
Optional[int]
|
Maximum number of tokens to generate in the response |
model_id |
str
|
The Bedrock model ID (e.g., "us.anthropic.claude-sonnet-4-20250514-v1:0") |
stop_sequences |
Optional[list[str]]
|
List of sequences that will stop generation when encountered |
streaming |
Optional[bool]
|
Flag to enable/disable streaming. Defaults to True. |
temperature |
Optional[float]
|
Controls randomness in generation (higher = more random) |
top_p |
Optional[float]
|
Controls diversity via nucleus sampling (alternative to temperature) |
Source code in strands/models/bedrock.py
__init__(*, boto_session=None, boto_client_config=None, region_name=None, **model_config)
¶
Initialize provider instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
boto_session
|
Optional[Session]
|
Boto Session to use when calling the Bedrock Model. |
None
|
boto_client_config
|
Optional[Config]
|
Configuration to use when creating the Bedrock-Runtime Boto Client. |
None
|
region_name
|
Optional[str]
|
AWS region to use for the Bedrock service. Defaults to the AWS_REGION environment variable if set, or "us-west-2" if not set. |
None
|
**model_config
|
Unpack[BedrockConfig]
|
Configuration options for the Bedrock model. |
{}
|
Source code in strands/models/bedrock.py
format_request(messages, tool_specs=None, system_prompt=None)
¶
Format a Bedrock converse stream 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
|
Returns:
Type | Description |
---|---|
dict[str, Any]
|
A Bedrock converse stream request. |
Source code in strands/models/bedrock.py
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 |
|
get_config()
¶
Get the current Bedrock Model configuration.
Returns:
Type | Description |
---|---|
BedrockConfig
|
The Bedrock model configuration. |
stream(messages, tool_specs=None, system_prompt=None, **kwargs)
async
¶
Stream conversation with the Bedrock model.
This method calls either the Bedrock converse_stream API or the converse API based on the streaming parameter in the configuration.
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
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
Type | Description |
---|---|
AsyncGenerator[StreamEvent, None]
|
Model events. |
Raises:
Type | Description |
---|---|
ContextWindowOverflowException
|
If the input exceeds the model's context window. |
ModelThrottledException
|
If the model service is throttling requests. |
Source code in strands/models/bedrock.py
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/bedrock.py
update_config(**model_config)
¶
Update the Bedrock Model configuration with the provided arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**model_config
|
Unpack[BedrockConfig]
|
Configuration overrides. |
{}
|
Source code in strands/models/bedrock.py
strands.models.anthropic
¶
Anthropic Claude model provider.
- Docs: https://docs.anthropic.com/claude/reference/getting-started-with-the-api
AnthropicModel
¶
Bases: Model
Anthropic model provider implementation.
Source code in strands/models/anthropic.py
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 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 |
|
AnthropicConfig
¶
Bases: TypedDict
Configuration options for Anthropic models.
Attributes:
Name | Type | Description |
---|---|---|
max_tokens |
Required[str]
|
Maximum number of tokens to generate. |
model_id |
Required[str]
|
Calude model ID (e.g., "claude-3-7-sonnet-latest"). For a complete list of supported models, see https://docs.anthropic.com/en/docs/about-claude/models/all-models. |
params |
Optional[dict[str, Any]]
|
Additional model parameters (e.g., temperature). For a complete list of supported parameters, see https://docs.anthropic.com/en/api/messages. |
Source code in strands/models/anthropic.py
__init__(*, client_args=None, **model_config)
¶
Initialize provider instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client_args
|
Optional[dict[str, Any]]
|
Arguments for the underlying Anthropic client (e.g., api_key). For a complete list of supported arguments, see https://docs.anthropic.com/en/api/client-sdks. |
None
|
**model_config
|
Unpack[AnthropicConfig]
|
Configuration options for the Anthropic model. |
{}
|
Source code in strands/models/anthropic.py
format_chunk(event)
¶
Format the Anthropic response events into standardized message chunks.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
event
|
dict[str, Any]
|
A response event from the Anthropic model. |
required |
Returns:
Type | Description |
---|---|
StreamEvent
|
The formatted chunk. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If chunk_type is not recognized. This error should never be encountered as we control chunk_type in the stream method. |
Source code in strands/models/anthropic.py
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 |
|
format_request(messages, tool_specs=None, system_prompt=None)
¶
Format an Anthropic 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
|
Returns:
Type | Description |
---|---|
dict[str, Any]
|
An Anthropic streaming request. |
Raises:
Type | Description |
---|---|
TypeError
|
If a message contains a content block type that cannot be converted to an Anthropic-compatible format. |
Source code in strands/models/anthropic.py
get_config()
¶
Get the Anthropic model configuration.
Returns:
Type | Description |
---|---|
AnthropicConfig
|
The Anthropic model configuration. |
stream(messages, tool_specs=None, system_prompt=None, **kwargs)
async
¶
Stream conversation with the Anthropic 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
|
**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 Anthropic. |
Source code in strands/models/anthropic.py
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/anthropic.py
update_config(**model_config)
¶
Update the Anthropic model configuration with the provided arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**model_config
|
Unpack[AnthropicConfig]
|
Configuration overrides. |
{}
|
Source code in strands/models/anthropic.py
strands.models.litellm
¶
LiteLLM model provider.
- Docs: https://docs.litellm.ai/
LiteLLMModel
¶
Bases: OpenAIModel
LiteLLM model provider implementation.
Source code in strands/models/litellm.py
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 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 |
|
LiteLLMConfig
¶
Bases: TypedDict
Configuration options for LiteLLM models.
Attributes:
Name | Type | Description |
---|---|---|
model_id |
str
|
Model ID (e.g., "openai/gpt-4o", "anthropic/claude-3-sonnet"). For a complete list of supported models, see https://docs.litellm.ai/docs/providers. |
params |
Optional[dict[str, Any]]
|
Model parameters (e.g., max_tokens). For a complete list of supported parameters, see https://docs.litellm.ai/docs/completion/input#input-params-1. |
Source code in strands/models/litellm.py
__init__(client_args=None, **model_config)
¶
Initialize provider instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client_args
|
Optional[dict[str, Any]]
|
Arguments for the LiteLLM client. For a complete list of supported arguments, see https://github.com/BerriAI/litellm/blob/main/litellm/main.py. |
None
|
**model_config
|
Unpack[LiteLLMConfig]
|
Configuration options for the LiteLLM model. |
{}
|
Source code in strands/models/litellm.py
format_request_message_content(content)
classmethod
¶
Format a LiteLLM content block.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content
|
ContentBlock
|
Message content. |
required |
Returns:
Type | Description |
---|---|
dict[str, Any]
|
LiteLLM formatted content block. |
Raises:
Type | Description |
---|---|
TypeError
|
If the content block type cannot be converted to a LiteLLM-compatible format. |
Source code in strands/models/litellm.py
get_config()
¶
Get the LiteLLM model configuration.
Returns:
Type | Description |
---|---|
LiteLLMConfig
|
The LiteLLM model configuration. |
stream(messages, tool_specs=None, system_prompt=None, **kwargs)
async
¶
Stream conversation with the LiteLLM 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
|
**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/litellm.py
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 |
|
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/litellm.py
update_config(**model_config)
¶
Update the LiteLLM model configuration with the provided arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**model_config
|
Unpack[LiteLLMConfig]
|
Configuration overrides. |
{}
|
Source code in strands/models/litellm.py
strands.models.llamaapi
¶
Llama API model provider.
- Docs: https://llama.developer.meta.com/
LlamaAPIModel
¶
Bases: Model
Llama API model provider implementation.
Source code in strands/models/llamaapi.py
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 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 |
|
LlamaConfig
¶
Bases: TypedDict
Configuration options for Llama API models.
Attributes:
Name | Type | Description |
---|---|---|
model_id |
str
|
Model ID (e.g., "Llama-4-Maverick-17B-128E-Instruct-FP8"). |
repetition_penalty |
Optional[float]
|
Repetition penalty. |
temperature |
Optional[float]
|
Temperature. |
top_p |
Optional[float]
|
Top-p. |
max_completion_tokens |
Optional[int]
|
Maximum completion tokens. |
top_k |
Optional[int]
|
Top-k. |
Source code in strands/models/llamaapi.py
__init__(*, client_args=None, **model_config)
¶
Initialize provider instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client_args
|
Optional[dict[str, Any]]
|
Arguments for the Llama API client. |
None
|
**model_config
|
Unpack[LlamaConfig]
|
Configuration options for the Llama API model. |
{}
|
Source code in strands/models/llamaapi.py
format_chunk(event)
¶
Format the Llama API model response events into standardized message chunks.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
event
|
dict[str, Any]
|
A response event from the model. |
required |
Returns:
Type | Description |
---|---|
StreamEvent
|
The formatted chunk. |
Source code in strands/models/llamaapi.py
format_request(messages, tool_specs=None, system_prompt=None)
¶
Format a Llama API 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
|
Returns:
Type | Description |
---|---|
dict[str, Any]
|
An Llama API chat streaming request. |
Raises:
Type | Description |
---|---|
TypeError
|
If a message contains a content block type that cannot be converted to a LlamaAPI-compatible format. |
Source code in strands/models/llamaapi.py
get_config()
¶
Get the Llama API model configuration.
Returns:
Type | Description |
---|---|
LlamaConfig
|
The Llama API model configuration. |
stream(messages, tool_specs=None, system_prompt=None, **kwargs)
async
¶
Stream conversation with the LlamaAPI 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
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
Type | Description |
---|---|
AsyncGenerator[StreamEvent, None]
|
Formatted message chunks from the model. |
Raises:
Type | Description |
---|---|
ModelThrottledException
|
When the model service is throttling requests from the client. |
Source code in strands/models/llamaapi.py
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 |
|
structured_output(output_model, prompt, system_prompt=None, **kwargs)
¶
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 |
---|---|
NotImplementedError
|
Structured output is not currently supported for LlamaAPI models. |
Source code in strands/models/llamaapi.py
update_config(**model_config)
¶
Update the Llama API Model configuration with the provided arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**model_config
|
Unpack[LlamaConfig]
|
Configuration overrides. |
{}
|
Source code in strands/models/llamaapi.py
strands.models.mistral
¶
Mistral AI model provider.
- Docs: https://docs.mistral.ai/
MistralModel
¶
Bases: Model
Mistral API model provider implementation.
The implementation handles Mistral-specific features such as:
- Chat and text completions
- Streaming responses
- Tool/function calling
- System prompts
Source code in strands/models/mistral.py
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 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 |
|
MistralConfig
¶
Bases: TypedDict
Configuration parameters for Mistral models.
Attributes:
Name | Type | Description |
---|---|---|
model_id |
str
|
Mistral model ID (e.g., "mistral-large-latest", "mistral-medium-latest"). |
max_tokens |
Optional[int]
|
Maximum number of tokens to generate in the response. |
temperature |
Optional[float]
|
Controls randomness in generation (0.0 to 1.0). |
top_p |
Optional[float]
|
Controls diversity via nucleus sampling. |
stream |
Optional[bool]
|
Whether to enable streaming responses. |
Source code in strands/models/mistral.py
__init__(api_key=None, *, client_args=None, **model_config)
¶
Initialize provider instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
api_key
|
Optional[str]
|
Mistral API key. If not provided, will use MISTRAL_API_KEY env var. |
None
|
client_args
|
Optional[dict[str, Any]]
|
Additional arguments for the Mistral client. |
None
|
**model_config
|
Unpack[MistralConfig]
|
Configuration options for the Mistral model. |
{}
|
Source code in strands/models/mistral.py
format_chunk(event)
¶
Format the Mistral response events into standardized message chunks.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
event
|
dict[str, Any]
|
A response event from the Mistral model. |
required |
Returns:
Type | Description |
---|---|
StreamEvent
|
The formatted chunk. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If chunk_type is not recognized. |
Source code in strands/models/mistral.py
format_request(messages, tool_specs=None, system_prompt=None)
¶
Format a Mistral 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
|
Returns:
Type | Description |
---|---|
dict[str, Any]
|
A Mistral chat streaming request. |
Raises:
Type | Description |
---|---|
TypeError
|
If a message contains a content block type that cannot be converted to a Mistral-compatible format. |
Source code in strands/models/mistral.py
get_config()
¶
Get the Mistral model configuration.
Returns:
Type | Description |
---|---|
MistralConfig
|
The Mistral model configuration. |
stream(messages, tool_specs=None, system_prompt=None, **kwargs)
async
¶
Stream conversation with the Mistral 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
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
Type | Description |
---|---|
AsyncGenerator[StreamEvent, None]
|
Formatted message chunks from the model. |
Raises:
Type | Description |
---|---|
ModelThrottledException
|
When the model service is throttling requests. |
Source code in strands/models/mistral.py
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 |
|
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. |
{}
|
Returns:
Type | Description |
---|---|
AsyncGenerator[dict[str, Union[T, Any]], None]
|
An instance of the output model with the generated data. |
Raises:
Type | Description |
---|---|
ValueError
|
If the response cannot be parsed into the output model. |
Source code in strands/models/mistral.py
update_config(**model_config)
¶
Update the Mistral Model configuration with the provided arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**model_config
|
Unpack[MistralConfig]
|
Configuration overrides. |
{}
|
Source code in strands/models/mistral.py
strands.models.ollama
¶
Ollama model provider.
- Docs: https://ollama.com/
OllamaModel
¶
Bases: Model
Ollama model provider implementation.
The implementation handles Ollama-specific features such as:
- Local model invocation
- Streaming responses
- Tool/function calling
Source code in strands/models/ollama.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 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 |
|
OllamaConfig
¶
Bases: TypedDict
Configuration parameters for Ollama models.
Attributes:
Name | Type | Description |
---|---|---|
additional_args |
Optional[dict[str, Any]]
|
Any additional arguments to include in the request. |
keep_alive |
Optional[str]
|
Controls how long the model will stay loaded into memory following the request (default: "5m"). |
max_tokens |
Optional[int]
|
Maximum number of tokens to generate in the response. |
model_id |
str
|
Ollama model ID (e.g., "llama3", "mistral", "phi3"). |
options |
Optional[dict[str, Any]]
|
Additional model parameters (e.g., top_k). |
stop_sequences |
Optional[list[str]]
|
List of sequences that will stop generation when encountered. |
temperature |
Optional[float]
|
Controls randomness in generation (higher = more random). |
top_p |
Optional[float]
|
Controls diversity via nucleus sampling (alternative to temperature). |
Source code in strands/models/ollama.py
__init__(host, *, ollama_client_args=None, **model_config)
¶
Initialize provider instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
host
|
Optional[str]
|
The address of the Ollama server hosting the model. |
required |
ollama_client_args
|
Optional[dict[str, Any]]
|
Additional arguments for the Ollama client. |
None
|
**model_config
|
Unpack[OllamaConfig]
|
Configuration options for the Ollama model. |
{}
|
Source code in strands/models/ollama.py
format_chunk(event)
¶
Format the Ollama response events into standardized message chunks.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
event
|
dict[str, Any]
|
A response event from the Ollama model. |
required |
Returns:
Type | Description |
---|---|
StreamEvent
|
The formatted chunk. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If chunk_type is not recognized. This error should never be encountered as we control chunk_type in the stream method. |
Source code in strands/models/ollama.py
format_request(messages, tool_specs=None, system_prompt=None)
¶
Format an Ollama 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
|
Returns:
Type | Description |
---|---|
dict[str, Any]
|
An Ollama chat streaming request. |
Raises:
Type | Description |
---|---|
TypeError
|
If a message contains a content block type that cannot be converted to an Ollama-compatible format. |
Source code in strands/models/ollama.py
get_config()
¶
Get the Ollama model configuration.
Returns:
Type | Description |
---|---|
OllamaConfig
|
The Ollama model configuration. |
stream(messages, tool_specs=None, system_prompt=None, **kwargs)
async
¶
Stream conversation with the Ollama 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
|
**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/ollama.py
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/ollama.py
update_config(**model_config)
¶
Update the Ollama Model configuration with the provided arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**model_config
|
Unpack[OllamaConfig]
|
Configuration overrides. |
{}
|
Source code in strands/models/ollama.py
strands.models.openai
¶
OpenAI model provider.
- Docs: https://platform.openai.com/docs/overview
Client
¶
Bases: Protocol
Protocol defining the OpenAI-compatible interface for the underlying provider client.
Source code in strands/models/openai.py
chat
property
¶
Chat completions interface.
OpenAIModel
¶
Bases: Model
OpenAI model provider implementation.
Source code in strands/models/openai.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 |
|
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
__init__(client_args=None, **model_config)
¶
Initialize provider instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client_args
|
Optional[dict[str, Any]]
|
Arguments for the OpenAI client. For a complete list of supported arguments, see https://pypi.org/project/openai/. |
None
|
**model_config
|
Unpack[OpenAIConfig]
|
Configuration options for the OpenAI model. |
{}
|
Source code in strands/models/openai.py
format_chunk(event)
¶
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 |
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
format_request(messages, tool_specs=None, system_prompt=None)
¶
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
|
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
|
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
format_request_message_content(content)
classmethod
¶
Format an OpenAI compatible content block.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content
|
ContentBlock
|
Message content. |
required |
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
format_request_message_tool_call(tool_use)
classmethod
¶
Format an OpenAI compatible tool call.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tool_use
|
ToolUse
|
Tool use requested by the model. |
required |
Returns:
Type | Description |
---|---|
dict[str, Any]
|
OpenAI compatible tool call. |
Source code in strands/models/openai.py
format_request_messages(messages, system_prompt=None)
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
|
Returns:
Type | Description |
---|---|
list[dict[str, Any]]
|
An OpenAI compatible messages array. |
Source code in strands/models/openai.py
format_request_tool_message(tool_result)
classmethod
¶
Format an OpenAI compatible tool message.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tool_result
|
ToolResult
|
Tool result collected from a tool execution. |
required |
Returns:
Type | Description |
---|---|
dict[str, Any]
|
OpenAI compatible tool message. |
Source code in strands/models/openai.py
get_config()
¶
Get the OpenAI model configuration.
Returns:
Type | Description |
---|---|
OpenAIConfig
|
The OpenAI model configuration. |
stream(messages, tool_specs=None, system_prompt=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
|
**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/openai.py
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 |
|
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/openai.py
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
strands.models.writer
¶
Writer model provider.
- Docs: https://dev.writer.com/home/introduction
WriterModel
¶
Bases: Model
Writer API model provider implementation.
Source code in strands/models/writer.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 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 |
|
WriterConfig
¶
Bases: TypedDict
Configuration options for Writer API.
Attributes:
Name | Type | Description |
---|---|---|
model_id |
str
|
Model name to use (e.g. palmyra-x5, palmyra-x4, etc.). |
max_tokens |
Optional[int]
|
Maximum number of tokens to generate. |
stop |
Optional[Union[str, List[str]]]
|
Default stop sequences. |
stream_options |
Dict[str, Any]
|
Additional options for streaming. |
temperature |
Optional[float]
|
What sampling temperature to use. |
top_p |
Optional[float]
|
Threshold for 'nucleus sampling' |
Source code in strands/models/writer.py
__init__(client_args=None, **model_config)
¶
Initialize provider instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client_args
|
Optional[dict[str, Any]]
|
Arguments for the Writer client (e.g., api_key, base_url, timeout, etc.). |
None
|
**model_config
|
Unpack[WriterConfig]
|
Configuration options for the Writer model. |
{}
|
Source code in strands/models/writer.py
format_chunk(event)
¶
Format the model response events into standardized message chunks.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
event
|
Any
|
A response event from the model. |
required |
Returns:
Type | Description |
---|---|
StreamEvent
|
The formatted chunk. |
Source code in strands/models/writer.py
format_request(messages, tool_specs=None, system_prompt=None)
¶
Format a streaming request to the underlying 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
|
Returns:
Type | Description |
---|---|
Any
|
The formatted request. |
Source code in strands/models/writer.py
get_config()
¶
Get the Writer model configuration.
Returns:
Type | Description |
---|---|
WriterConfig
|
The Writer model configuration. |
stream(messages, tool_specs=None, system_prompt=None, **kwargs)
async
¶
Stream conversation with the Writer 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
|
**kwargs
|
Any
|
Additional keyword arguments for future extensibility. |
{}
|
Yields:
Type | Description |
---|---|
AsyncGenerator[StreamEvent, None]
|
Formatted message chunks from the model. |
Raises:
Type | Description |
---|---|
ModelThrottledException
|
When the model service is throttling requests from the client. |
Source code in strands/models/writer.py
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. |
{}
|
Source code in strands/models/writer.py
update_config(**model_config)
¶
Update the Writer Model configuration with the provided arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**model_config
|
Unpack[WriterConfig]
|
Configuration overrides. |
{}
|