Class: Aws::QConnect::Types::GenerativeChunkDataDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::GenerativeChunkDataDetails
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
Details about the generative chunk data.
Constant Summary collapse
- SENSITIVE =
[:completion]
Instance Attribute Summary collapse
-
#completion ⇒ String
A chunk of the LLM response.
-
#next_chunk_token ⇒ String
The token for the next set of chunks.
-
#references ⇒ Array<Types::DataSummary>
The references used to generate the LLM response.
Instance Attribute Details
#completion ⇒ String
A chunk of the LLM response.
4831 4832 4833 4834 4835 4836 4837 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4831 class GenerativeChunkDataDetails < Struct.new( :completion, :references, :next_chunk_token) SENSITIVE = [:completion] include Aws::Structure end |
#next_chunk_token ⇒ String
The token for the next set of chunks. Use the value returned in the previous response in the next request to retrieve the next set of chunks.
4831 4832 4833 4834 4835 4836 4837 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4831 class GenerativeChunkDataDetails < Struct.new( :completion, :references, :next_chunk_token) SENSITIVE = [:completion] include Aws::Structure end |
#references ⇒ Array<Types::DataSummary>
The references used to generate the LLM response.
4831 4832 4833 4834 4835 4836 4837 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4831 class GenerativeChunkDataDetails < Struct.new( :completion, :references, :next_chunk_token) SENSITIVE = [:completion] include Aws::Structure end |