Class: Google::Apis::FirebasemlV2beta::Part
- Inherits:
-
Object
- Object
- Google::Apis::FirebasemlV2beta::Part
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseml_v2beta/classes.rb,
lib/google/apis/firebaseml_v2beta/representations.rb,
lib/google/apis/firebaseml_v2beta/representations.rb
Overview
A datatype containing media that is part of a multi-part Content message. A
Part consists of data which has an associated datatype. A Part can only
contain one of the accepted types in Part.data. A Part must have a fixed
IANA MIME type identifying the type and subtype of the media if inline_data
or file_data field is filled with raw bytes.
Instance Attribute Summary collapse
-
#file_data ⇒ Google::Apis::FirebasemlV2beta::FileData
URI based data.
-
#function_call ⇒ Google::Apis::FirebasemlV2beta::FunctionCall
A predicted [FunctionCall] returned from the model that contains a string representing the [FunctionDeclaration.name] and a structured JSON object containing the parameters and their values.
-
#function_response ⇒ Google::Apis::FirebasemlV2beta::FunctionResponse
The result output from a [FunctionCall] that contains a string representing the [FunctionDeclaration.name] and a structured JSON object containing any output from the function is used as context to the model.
-
#inline_data ⇒ Google::Apis::FirebasemlV2beta::Blob
Content blob.
-
#text ⇒ String
Optional.
-
#video_metadata ⇒ Google::Apis::FirebasemlV2beta::VideoMetadata
Metadata describes the input video content.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Part
constructor
A new instance of Part.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Part
Returns a new instance of Part.
766 767 768 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 766 def initialize(**args) update!(**args) end |
Instance Attribute Details
#file_data ⇒ Google::Apis::FirebasemlV2beta::FileData
URI based data.
Corresponds to the JSON property fileData
734 735 736 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 734 def file_data @file_data end |
#function_call ⇒ Google::Apis::FirebasemlV2beta::FunctionCall
A predicted [FunctionCall] returned from the model that contains a string
representing the [FunctionDeclaration.name] and a structured JSON object
containing the parameters and their values.
Corresponds to the JSON property functionCall
741 742 743 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 741 def function_call @function_call end |
#function_response ⇒ Google::Apis::FirebasemlV2beta::FunctionResponse
The result output from a [FunctionCall] that contains a string representing
the [FunctionDeclaration.name] and a structured JSON object containing any
output from the function is used as context to the model. This should contain
the result of a [FunctionCall] made based on model prediction.
Corresponds to the JSON property functionResponse
749 750 751 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 749 def function_response @function_response end |
#inline_data ⇒ Google::Apis::FirebasemlV2beta::Blob
Content blob. It's preferred to send as text directly rather than raw bytes.
Corresponds to the JSON property inlineData
754 755 756 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 754 def inline_data @inline_data end |
#text ⇒ String
Optional. Text part (can be code).
Corresponds to the JSON property text
759 760 761 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 759 def text @text end |
#video_metadata ⇒ Google::Apis::FirebasemlV2beta::VideoMetadata
Metadata describes the input video content.
Corresponds to the JSON property videoMetadata
764 765 766 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 764 def @video_metadata end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
771 772 773 774 775 776 777 778 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 771 def update!(**args) @file_data = args[:file_data] if args.key?(:file_data) @function_call = args[:function_call] if args.key?(:function_call) @function_response = args[:function_response] if args.key?(:function_response) @inline_data = args[:inline_data] if args.key?(:inline_data) @text = args[:text] if args.key?(:text) @video_metadata = args[:video_metadata] if args.key?(:video_metadata) end |