DocumentContentBlock
module-attribute
¶
DocumentContentBlock = Union[DocumentContentBlockText | DocumentContentBlockUnknown]
Contains the actual content of a document that can be processed by the model and potentially cited in the response.
Union Members¶
DocumentContentBlockText
dataclass
¶
The text content of the document.
Source code in src/aws_sdk_bedrock_runtime/models.py
6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 | |
DocumentContentBlockUnknown
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
6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 | |