CitationSourceContent
module-attribute
¶
CitationSourceContent = Union[CitationSourceContentText | CitationSourceContentUnknown]
Contains the actual text content from a source document that is being cited or referenced in the model's response.
Union Members¶
CitationSourceContentText
dataclass
¶
The text content from the source document that is being cited.
Source code in src/aws_sdk_bedrock_runtime/models.py
6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 | |
CitationSourceContentUnknown
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
6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 | |