Class: Aws::BedrockAgentRuntime::Types::ReasoningContentBlock
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::ReasoningContentBlock
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
ReasoningContentBlock is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ReasoningContentBlock corresponding to the set member.
Contains content regarding the reasoning that the foundation model made with respect to the content in the content block. Reasoning refers to a Chain of Thought (CoT) that the model generates to enhance the accuracy of its final response.
Direct Known Subclasses
Defined Under Namespace
Classes: ReasoningText, RedactedContent, Unknown
Constant Summary collapse
- SENSITIVE =
[:reasoning_text]
Instance Attribute Summary collapse
-
#reasoning_text ⇒ Types::ReasoningTextBlock
Contains information about the reasoning that the model used to return the content in the content block.
-
#redacted_content ⇒ String
The content in the reasoning that was encrypted by the model provider for trust and safety reasons.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#reasoning_text ⇒ Types::ReasoningTextBlock
Contains information about the reasoning that the model used to return the content in the content block.
6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 6901 class ReasoningContentBlock < Struct.new( :reasoning_text, :redacted_content, :unknown) SENSITIVE = [:reasoning_text] include Aws::Structure include Aws::Structure::Union class ReasoningText < ReasoningContentBlock; end class RedactedContent < ReasoningContentBlock; end class Unknown < ReasoningContentBlock; end end |
#redacted_content ⇒ String
The content in the reasoning that was encrypted by the model provider for trust and safety reasons.
6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 6901 class ReasoningContentBlock < Struct.new( :reasoning_text, :redacted_content, :unknown) SENSITIVE = [:reasoning_text] include Aws::Structure include Aws::Structure::Union class ReasoningText < ReasoningContentBlock; end class RedactedContent < ReasoningContentBlock; end class Unknown < ReasoningContentBlock; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6901 6902 6903 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 6901 def unknown @unknown end |