strands.models
¶
SDK model providers.
This package includes an abstract base Model class along with concrete implementations for specific providers.
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
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 |
|
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-3-7-sonnet-20250219-v1:0") |
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/bedrock.py
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 |
|
__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 "us-west-2". |
None
|
**model_config
|
Unpack[BedrockConfig]
|
Configuration options for the Bedrock model. |
{}
|
Source code in strands/models/bedrock.py
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 |
|
format_chunk(event)
¶
Format the Bedrock response events into standardized message chunks.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
event
|
dict[str, Any]
|
A response event from the Bedrock model. |
required |
Returns:
Type | Description |
---|---|
StreamEvent
|
The formatted chunk. |
Source code in strands/models/bedrock.py
220 221 222 223 224 225 226 227 228 229 230 |
|
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
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 |
|
get_config()
¶
Get the current Bedrock Model configuration.
Returns:
Type | Description |
---|---|
BedrockConfig
|
The Bedrok model configuration. |
Source code in strands/models/bedrock.py
127 128 129 130 131 132 133 134 |
|
stream(request)
¶
Send the request to the Bedrock model and get the streaming response.
This method calls the Bedrock converse_stream API and returns the stream of response events.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
request
|
dict[str, Any]
|
The formatted request to send to the Bedrock model |
required |
Returns:
Type | Description |
---|---|
Iterable[dict[str, Any]]
|
An iterable of response events from the Bedrock model |
Raises:
Type | Description |
---|---|
ContextWindowOverflowException
|
If the input exceeds the model's context window. |
EventStreamError
|
For all other Bedrock API errors. |
Source code in strands/models/bedrock.py
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 |
|
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
118 119 120 121 122 123 124 125 |
|
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
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 |
|
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
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|
__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
57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
|
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
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 |
|
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. |
Source code in strands/models/anthropic.py
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 |
|
get_config()
¶
Get the Anthropic model configuration.
Returns:
Type | Description |
---|---|
AnthropicConfig
|
The Anthropic model configuration. |
Source code in strands/models/anthropic.py
81 82 83 84 85 86 87 88 |
|
stream(request)
¶
Send the request to the Anthropic model and get the streaming response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
request
|
dict[str, Any]
|
The formatted request to send to the Anthropic model. |
required |
Returns:
Type | Description |
---|---|
Iterable[dict[str, Any]]
|
An iterable of response events from the Anthropic 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
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 |
|
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
72 73 74 75 76 77 78 79 |
|
strands.models.litellm
¶
LiteLLM model provider.
- Docs: https://docs.litellm.ai/
LiteLLMModel
¶
Bases: Model
LiteLLM model provider implementation.
Source code in strands/models/litellm.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 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 |
|
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
25 26 27 28 29 30 31 32 33 34 35 36 37 |
|
__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
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
|
format_chunk(event)
¶
Format the LiteLLM response events into standardized message chunks.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
event
|
dict[str, Any]
|
A response event from the LiteLLM 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/litellm.py
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 |
|
format_request(messages, tool_specs=None, system_prompt=None)
¶
Format a LiteLLM 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 LiteLLM chat streaming request. |
Source code in strands/models/litellm.py
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
|
get_config()
¶
Get the LiteLLM model configuration.
Returns:
Type | Description |
---|---|
LiteLLMConfig
|
The LiteLLM model configuration. |
Source code in strands/models/litellm.py
64 65 66 67 68 69 70 71 |
|
stream(request)
¶
Send the request to the LiteLLM model and get the streaming response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
request
|
dict[str, Any]
|
The formatted request to send to the LiteLLM model. |
required |
Returns:
Type | Description |
---|---|
Iterable[dict[str, Any]]
|
An iterable of response events from the LiteLLM model. |
Source code in strands/models/litellm.py
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 |
|
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
55 56 57 58 59 60 61 62 |
|
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
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 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 |
|
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
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
|
__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
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
|
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
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 |
|
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. |
Source code in strands/models/ollama.py
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 |
|
get_config()
¶
Get the Ollama model configuration.
Returns:
Type | Description |
---|---|
OllamaConfig
|
The Ollama model configuration. |
Source code in strands/models/ollama.py
86 87 88 89 90 91 92 93 |
|
stream(request)
¶
Send the request to the Ollama model and get the streaming response.
This method calls the Ollama chat API and returns the stream of response events.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
request
|
dict[str, Any]
|
The formatted request to send to the Ollama model. |
required |
Returns:
Type | Description |
---|---|
Iterable[dict[str, Any]]
|
An iterable of response events from the Ollama model. |
Source code in strands/models/ollama.py
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 |
|
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
77 78 79 80 81 82 83 84 |
|
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
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 358 359 360 361 362 363 364 365 366 |
|
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
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
|
__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
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
|
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
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 |
|
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. |
Source code in strands/models/llamaapi.py
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 |
|
get_config()
¶
Get the Llama API model configuration.
Returns:
Type | Description |
---|---|
LlamaConfig
|
The Llama API model configuration. |
Source code in strands/models/llamaapi.py
76 77 78 79 80 81 82 83 |
|
stream(request)
¶
Send the request to the model and get a streaming response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
request
|
dict[str, Any]
|
The formatted request to send to the model. |
required |
Returns:
Type | Description |
---|---|
Iterable[dict[str, Any]]
|
The model's response. |
Raises:
Type | Description |
---|---|
ModelThrottledException
|
When the model service is throttling requests from the client. |
Source code in strands/models/llamaapi.py
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 |
|
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
67 68 69 70 71 72 73 74 |
|