ContentBlockDelta
module-attribute
¶
ContentBlockDelta = Union[ContentBlockDeltaText | ContentBlockDeltaToolUse | ContentBlockDeltaToolResult | ContentBlockDeltaReasoningContent | ContentBlockDeltaCitation | ContentBlockDeltaUnknown]
A block of content in a streaming response.
Union Members¶
ContentBlockDeltaText
dataclass
¶
The content text.
Source code in src/aws_sdk_bedrock_runtime/models.py
11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 | |
ContentBlockDeltaToolUse
dataclass
¶
Information about a tool that the model is requesting to use.
Source code in src/aws_sdk_bedrock_runtime/models.py
11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 | |
ContentBlockDeltaToolResult
dataclass
¶
An incremental update that contains the results from a tool call.
Source code in src/aws_sdk_bedrock_runtime/models.py
11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 | |
ContentBlockDeltaReasoningContent
dataclass
¶
Contains content regarding the reasoning that is carried out by the model. Reasoning refers to a Chain of Thought (CoT) that the model generates to enhance the accuracy of its final response.
Source code in src/aws_sdk_bedrock_runtime/models.py
11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 | |
ContentBlockDeltaCitation
dataclass
¶
Incremental citation information that is streamed as part of the response generation process.
Source code in src/aws_sdk_bedrock_runtime/models.py
11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 | |
ContentBlockDeltaUnknown
dataclass
¶
Represents an unknown variant.
If you receive this value, you will need to update your library to receive the parsed value.
This value may not be deliberately sent.
Source code in src/aws_sdk_bedrock_runtime/models.py
11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 | |