Home / Class/ SkillCreateResponse Class — anthropic-sdk-python Architecture

SkillCreateResponse Class — anthropic-sdk-python Architecture

Architecture documentation for the SkillCreateResponse class in skill_create_response.py from the anthropic-sdk-python codebase.

Entity Profile

Dependency Diagram

graph TD
  5c7c6a85_9a24_ff7a_8dc6_8f174fab0aec["SkillCreateResponse"]
  17ce5647_6f06_0676_a4a5_e378a3f57cb1["BaseModel"]
  5c7c6a85_9a24_ff7a_8dc6_8f174fab0aec -->|extends| 17ce5647_6f06_0676_a4a5_e378a3f57cb1
  4de43bc0_ef54_39da_c577_348397a525cc["skill_create_response.py"]
  5c7c6a85_9a24_ff7a_8dc6_8f174fab0aec -->|defined in| 4de43bc0_ef54_39da_c577_348397a525cc

Relationship Graph

Source Code

src/anthropic/types/beta/skill_create_response.py lines 10–49

class SkillCreateResponse(BaseModel):
    id: str
    """Unique identifier for the skill.

    The format and length of IDs may change over time.
    """

    created_at: str
    """ISO 8601 timestamp of when the skill was created."""

    display_title: Optional[str] = None
    """Display title for the skill.

    This is a human-readable label that is not included in the prompt sent to the
    model.
    """

    latest_version: Optional[str] = None
    """The latest version identifier for the skill.

    This represents the most recent version of the skill that has been created.
    """

    source: str
    """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
    """

    type: str
    """Object type.

    For Skills, this is always `"skill"`.
    """

    updated_at: str
    """ISO 8601 timestamp of when the skill was last updated."""

Extends

Frequently Asked Questions

What is the SkillCreateResponse class?
SkillCreateResponse is a class in the anthropic-sdk-python codebase, defined in src/anthropic/types/beta/skill_create_response.py.
Where is SkillCreateResponse defined?
SkillCreateResponse is defined in src/anthropic/types/beta/skill_create_response.py at line 10.
What does SkillCreateResponse extend?
SkillCreateResponse extends BaseModel.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free