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.
4760 4761 4762 4763 4764 4765 4766 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4760 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.
4760 4761 4762 4763 4764 4765 4766 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4760 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.
4760 4761 4762 4763 4764 4765 4766 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4760 class GenerativeChunkDataDetails < Struct.new( :completion, :references, :next_chunk_token) SENSITIVE = [:completion] include Aws::Structure end |