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

SkillRetrieveResponse Class — anthropic-sdk-python Architecture

Architecture documentation for the SkillRetrieveResponse class in skill_retrieve_response.py from the anthropic-sdk-python codebase.

Entity Profile

Dependency Diagram

graph TD
  c62c6062_1f06_a270_5cc3_cf541699ad23["SkillRetrieveResponse"]
  17ce5647_6f06_0676_a4a5_e378a3f57cb1["BaseModel"]
  c62c6062_1f06_a270_5cc3_cf541699ad23 -->|extends| 17ce5647_6f06_0676_a4a5_e378a3f57cb1
  401b90ef_8e56_f8d1_1630_29a9ac56d0eb["skill_retrieve_response.py"]
  c62c6062_1f06_a270_5cc3_cf541699ad23 -->|defined in| 401b90ef_8e56_f8d1_1630_29a9ac56d0eb

Relationship Graph

Source Code

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

class SkillRetrieveResponse(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 SkillRetrieveResponse class?
SkillRetrieveResponse is a class in the anthropic-sdk-python codebase, defined in src/anthropic/types/beta/skill_retrieve_response.py.
Where is SkillRetrieveResponse defined?
SkillRetrieveResponse is defined in src/anthropic/types/beta/skill_retrieve_response.py at line 10.
What does SkillRetrieveResponse extend?
SkillRetrieveResponse extends BaseModel.

Analyze Your Own Codebase

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

Try Supermodel Free