Class: Anthropic::Models::Beta::SkillRetrieveResponse
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Anthropic::Models::Beta::SkillRetrieveResponse
- Defined in:
- lib/anthropic/models/beta/skill_retrieve_response.rb
Overview
Instance Attribute Summary collapse
-
#created_at ⇒ String
ISO 8601 timestamp of when the skill was created.
-
#display_title ⇒ String?
Display title for the skill.
-
#id ⇒ String
Unique identifier for the skill.
-
#latest_version ⇒ String?
The latest version identifier for the skill.
-
#source ⇒ String
Source of the skill.
-
#type ⇒ String
Object type.
-
#updated_at ⇒ String
ISO 8601 timestamp of when the skill was last updated.
Instance Method Summary collapse
-
#initialize(id: , created_at: , display_title: , latest_version: , source: , type: , updated_at: ) ⇒ void
constructor
Some parameter documentations has been truncated, see SkillRetrieveResponse 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, meta_info, new_coerce_state, 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(id: , created_at: , display_title: , latest_version: , source: , type: , updated_at: ) ⇒ void
Some parameter documentations has been truncated, see Anthropic::Models::Beta::SkillRetrieveResponse for more details.
|
|
# File 'lib/anthropic/models/beta/skill_retrieve_response.rb', line 64
|
Instance Attribute Details
#created_at ⇒ String
ISO 8601 timestamp of when the skill was created.
20 |
# File 'lib/anthropic/models/beta/skill_retrieve_response.rb', line 20 required :created_at, String |
#display_title ⇒ String?
Display title for the skill.
This is a human-readable label that is not included in the prompt sent to the model.
29 |
# File 'lib/anthropic/models/beta/skill_retrieve_response.rb', line 29 required :display_title, String, nil?: true |
#id ⇒ String
Unique identifier for the skill.
The format and length of IDs may change over time.
14 |
# File 'lib/anthropic/models/beta/skill_retrieve_response.rb', line 14 required :id, String |
#latest_version ⇒ String?
The latest version identifier for the skill.
This represents the most recent version of the skill that has been created.
37 |
# File 'lib/anthropic/models/beta/skill_retrieve_response.rb', line 37 required :latest_version, String, nil?: true |
#source ⇒ String
Source of the skill.
This may be one of the following values:
"custom": the skill was created by a user"anthropic": the skill was created by Anthropic
48 |
# File 'lib/anthropic/models/beta/skill_retrieve_response.rb', line 48 required :source, String |
#type ⇒ String
Object type.
For Skills, this is always "skill".
56 |
# File 'lib/anthropic/models/beta/skill_retrieve_response.rb', line 56 required :type, String |
#updated_at ⇒ String
ISO 8601 timestamp of when the skill was last updated.
62 |
# File 'lib/anthropic/models/beta/skill_retrieve_response.rb', line 62 required :updated_at, String |