Class: OpenAI::Models::Moderation
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Moderation
- Defined in:
- lib/openai/models/moderation.rb
Defined Under Namespace
Classes: Categories, CategoryAppliedInputTypes, CategoryScores
Instance Attribute Summary collapse
-
#categories ⇒ OpenAI::Models::Moderation::Categories
A list of the categories, and whether they are flagged or not.
-
#category_applied_input_types ⇒ OpenAI::Models::Moderation::CategoryAppliedInputTypes
A list of the categories along with the input type(s) that the score applies to.
-
#category_scores ⇒ OpenAI::Models::Moderation::CategoryScores
A list of the categories along with their scores as predicted by model.
-
#flagged ⇒ Boolean
Whether any of the below categories are flagged.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(harassment: , harassment_threatening: , hate: , hate_threatening: , illicit: , illicit_violent: , self_harm: , self_harm_instructions: , self_harm_intent: , sexual: , sexual_minors: , violence: , violence_graphic: ) ⇒ Object
constructor
Some parameter documentations has been truncated, see Categories for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(harassment: , harassment_threatening: , hate: , hate_threatening: , illicit: , illicit_violent: , self_harm: , self_harm_instructions: , self_harm_intent: , sexual: , sexual_minors: , violence: , violence_graphic: ) ⇒ Object
Some parameter documentations has been truncated, see Categories for more details.
A list of the categories, and whether they are flagged or not.
|
# File 'lib/openai/models/moderation.rb', line 30
|
Instance Attribute Details
#categories ⇒ OpenAI::Models::Moderation::Categories
A list of the categories, and whether they are flagged or not.
10 |
# File 'lib/openai/models/moderation.rb', line 10 required :categories, -> { OpenAI::Moderation::Categories } |
#category_applied_input_types ⇒ OpenAI::Models::Moderation::CategoryAppliedInputTypes
A list of the categories along with the input type(s) that the score applies to.
16 |
# File 'lib/openai/models/moderation.rb', line 16 required :category_applied_input_types, -> { OpenAI::Moderation::CategoryAppliedInputTypes } |
#category_scores ⇒ OpenAI::Models::Moderation::CategoryScores
A list of the categories along with their scores as predicted by model.
22 |
# File 'lib/openai/models/moderation.rb', line 22 required :category_scores, -> { OpenAI::Moderation::CategoryScores } |
Class Method Details
.values ⇒ Array<Symbol>
|
# File 'lib/openai/models/moderation.rb', line 447
|