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

AsyncSkillsWithRawResponse Class — anthropic-sdk-python Architecture

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

Entity Profile

Dependency Diagram

graph TD
  eb11f78c_bdf8_93ae_f847_6a50d3ac1a19["AsyncSkillsWithRawResponse"]
  838ab8e2_8763_65c1_65fc_cb3d8a4f7d3c["skills.py"]
  eb11f78c_bdf8_93ae_f847_6a50d3ac1a19 -->|defined in| 838ab8e2_8763_65c1_65fc_cb3d8a4f7d3c
  0fb02612_ed91_adcf_053c_f35d5b418df0["__init__()"]
  eb11f78c_bdf8_93ae_f847_6a50d3ac1a19 -->|method| 0fb02612_ed91_adcf_053c_f35d5b418df0
  26e48324_74ad_443a_7073_5d2a068bf9ba["versions()"]
  eb11f78c_bdf8_93ae_f847_6a50d3ac1a19 -->|method| 26e48324_74ad_443a_7073_5d2a068bf9ba

Relationship Graph

Source Code

src/anthropic/resources/beta/skills/skills.py lines 617–636

class AsyncSkillsWithRawResponse:
    def __init__(self, skills: AsyncSkills) -> None:
        self._skills = skills

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

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

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free