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

AsyncSkillsWithStreamingResponse Class — anthropic-sdk-python Architecture

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

Entity Profile

Dependency Diagram

graph TD
  1ca5a01c_c560_2733_9fc7_f8ef2f78c6ff["AsyncSkillsWithStreamingResponse"]
  838ab8e2_8763_65c1_65fc_cb3d8a4f7d3c["skills.py"]
  1ca5a01c_c560_2733_9fc7_f8ef2f78c6ff -->|defined in| 838ab8e2_8763_65c1_65fc_cb3d8a4f7d3c
  264073b2_4588_b88e_4f3e_0aa123e365a5["__init__()"]
  1ca5a01c_c560_2733_9fc7_f8ef2f78c6ff -->|method| 264073b2_4588_b88e_4f3e_0aa123e365a5
  88544286_6eae_bbce_8b05_06cf9b471d29["versions()"]
  1ca5a01c_c560_2733_9fc7_f8ef2f78c6ff -->|method| 88544286_6eae_bbce_8b05_06cf9b471d29

Relationship Graph

Source Code

src/anthropic/resources/beta/skills/skills.py lines 661–680

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

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

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

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free