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.
4444 4445 4446 4447 4448 4449 4450 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4444 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.
4444 4445 4446 4447 4448 4449 4450 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4444 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.
4444 4445 4446 4447 4448 4449 4450 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4444 class GenerativeChunkDataDetails < Struct.new( :completion, :references, :next_chunk_token) SENSITIVE = [:completion] include Aws::Structure end |