Class SkillCreateParams.Body
-
- All Implemented Interfaces:
public final class SkillCreateParams.Body
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classSkillCreateParams.Body.BuilderA builder for Body.
-
Method Summary
Modifier and Type Method Description final Optional<String>displayTitle()Display title for the skill. final Optional<List<InputStream>>files()Files to upload for the skill. final MultipartField<String>_displayTitle()Returns the raw multipart value of displayTitle. final MultipartField<List<InputStream>>_files()Returns the raw multipart value of files. final Map<String, JsonValue>_additionalProperties()final SkillCreateParams.Body.BuildertoBuilder()final SkillCreateParams.Bodyvalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static SkillCreateParams.Body.Builderbuilder()Returns a mutable builder for constructing an instance of Body. -
-
Method Detail
-
displayTitle
final Optional<String> displayTitle()
Display title for the skill.
This is a human-readable label that is not included in the prompt sent to the model.
-
files
final Optional<List<InputStream>> files()
Files to upload for the skill.
All files must be in the same top-level directory and must include a SKILL.md file at the root of that directory.
-
_displayTitle
final MultipartField<String> _displayTitle()
Returns the raw multipart value of displayTitle.
Unlike displayTitle, this method doesn't throw if the multipart field has an unexpected type.
-
_files
final MultipartField<List<InputStream>> _files()
Returns the raw multipart value of files.
Unlike files, this method doesn't throw if the multipart field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final SkillCreateParams.Body.Builder toBuilder()
-
validate
final SkillCreateParams.Body validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
builder
final static SkillCreateParams.Body.Builder builder()
Returns a mutable builder for constructing an instance of Body.
-
-
-
-