Class: Google::Cloud::Ces::V1::Citations
- Inherits:
-
Object
- Object
- Google::Cloud::Ces::V1::Citations
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/ces/v1/session_service.rb
Overview
Citations associated with the agent response.
Defined Under Namespace
Classes: CitedChunk
Instance Attribute Summary collapse
-
#cited_chunks ⇒ ::Array<::Google::Cloud::Ces::V1::Citations::CitedChunk>
List of cited pieces of information.
Instance Attribute Details
#cited_chunks ⇒ ::Array<::Google::Cloud::Ces::V1::Citations::CitedChunk>
Returns List of cited pieces of information.
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
# File 'proto_docs/google/cloud/ces/v1/session_service.rb', line 170 class Citations include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Piece of cited information. # @!attribute [rw] uri # @return [::String] # URI used for citation. # @!attribute [rw] title # @return [::String] # Title of the cited document. # @!attribute [rw] text # @return [::String] # Text used for citation. class CitedChunk include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |