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

SkillsWithStreamingResponse Class — anthropic-sdk-python Architecture

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

Entity Profile

Dependency Diagram

graph TD
  5e98e4af_d9a5_fb01_7a4f_c87560a1657f["SkillsWithStreamingResponse"]
  838ab8e2_8763_65c1_65fc_cb3d8a4f7d3c["skills.py"]
  5e98e4af_d9a5_fb01_7a4f_c87560a1657f -->|defined in| 838ab8e2_8763_65c1_65fc_cb3d8a4f7d3c
  244b13ec_f76b_b504_205e_0243b64541e3["__init__()"]
  5e98e4af_d9a5_fb01_7a4f_c87560a1657f -->|method| 244b13ec_f76b_b504_205e_0243b64541e3
  559c8392_1dbb_19f9_0ebe_e253f14128fc["versions()"]
  5e98e4af_d9a5_fb01_7a4f_c87560a1657f -->|method| 559c8392_1dbb_19f9_0ebe_e253f14128fc

Relationship Graph

Source Code

src/anthropic/resources/beta/skills/skills.py lines 639–658

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

        self.create = to_streamed_response_wrapper(
            skills.create,
        )
        self.retrieve = to_streamed_response_wrapper(
            skills.retrieve,
        )
        self.list = to_streamed_response_wrapper(
            skills.list,
        )
        self.delete = to_streamed_response_wrapper(
            skills.delete,
        )

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

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free