Class: Google::Apis::AiplatformV1::CloudAiNlLlmProtoServiceSafetyRatingInfluentialTerm

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

The influential term that could potentially block the response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CloudAiNlLlmProtoServiceSafetyRatingInfluentialTerm

Returns a new instance of CloudAiNlLlmProtoServiceSafetyRatingInfluentialTerm.



1128
1129
1130
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1128

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#begin_offsetFixnum

The beginning offset of the influential term. Corresponds to the JSON property beginOffset

Returns:

  • (Fixnum)


1111
1112
1113
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1111

def begin_offset
  @begin_offset
end

#confidenceFloat

The confidence score of the influential term. Corresponds to the JSON property confidence

Returns:

  • (Float)


1116
1117
1118
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1116

def confidence
  @confidence
end

#sourceString

The source of the influential term, prompt or response. Corresponds to the JSON property source

Returns:

  • (String)


1121
1122
1123
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1121

def source
  @source
end

#termString

The influential term. Corresponds to the JSON property term

Returns:

  • (String)


1126
1127
1128
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1126

def term
  @term
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1133
1134
1135
1136
1137
1138
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1133

def update!(**args)
  @begin_offset = args[:begin_offset] if args.key?(:begin_offset)
  @confidence = args[:confidence] if args.key?(:confidence)
  @source = args[:source] if args.key?(:source)
  @term = args[:term] if args.key?(:term)
end