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

SkillsWithRawResponse Class — anthropic-sdk-python Architecture

Architecture documentation for the SkillsWithRawResponse class in skills.py from the anthropic-sdk-python codebase.

Entity Profile

Dependency Diagram

graph TD
  979c4acb_140a_5244_eb51_e175aff0e265["SkillsWithRawResponse"]
  838ab8e2_8763_65c1_65fc_cb3d8a4f7d3c["skills.py"]
  979c4acb_140a_5244_eb51_e175aff0e265 -->|defined in| 838ab8e2_8763_65c1_65fc_cb3d8a4f7d3c
  9e5a03f6_9fcc_c2a9_c294_16e158fe1016["__init__()"]
  979c4acb_140a_5244_eb51_e175aff0e265 -->|method| 9e5a03f6_9fcc_c2a9_c294_16e158fe1016
  0913df7f_c8b3_79aa_84c0_0053b11cca4c["versions()"]
  979c4acb_140a_5244_eb51_e175aff0e265 -->|method| 0913df7f_c8b3_79aa_84c0_0053b11cca4c

Relationship Graph

Source Code

src/anthropic/resources/beta/skills/skills.py lines 595–614

class SkillsWithRawResponse:
    def __init__(self, skills: Skills) -> None:
        self._skills = skills

        self.create = _legacy_response.to_raw_response_wrapper(
            skills.create,
        )
        self.retrieve = _legacy_response.to_raw_response_wrapper(
            skills.retrieve,
        )
        self.list = _legacy_response.to_raw_response_wrapper(
            skills.list,
        )
        self.delete = _legacy_response.to_raw_response_wrapper(
            skills.delete,
        )

    @cached_property
    def versions(self) -> VersionsWithRawResponse:
        return VersionsWithRawResponse(self._skills.versions)

Frequently Asked Questions

What is the SkillsWithRawResponse class?
SkillsWithRawResponse is a class in the anthropic-sdk-python codebase, defined in src/anthropic/resources/beta/skills/skills.py.
Where is SkillsWithRawResponse defined?
SkillsWithRawResponse is defined in src/anthropic/resources/beta/skills/skills.py at line 595.

Analyze Your Own Codebase

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

Try Supermodel Free