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

AsyncBetaWithRawResponse Class — anthropic-sdk-python Architecture

Architecture documentation for the AsyncBetaWithRawResponse class in beta.py from the anthropic-sdk-python codebase.

Entity Profile

Dependency Diagram

graph TD
  a0b7e819_2437_7857_901f_3fcd4c42d0fc["AsyncBetaWithRawResponse"]
  eefce75c_4e32_6afb_2dcc_5a91b820bdec["beta.py"]
  a0b7e819_2437_7857_901f_3fcd4c42d0fc -->|defined in| eefce75c_4e32_6afb_2dcc_5a91b820bdec
  bd59992e_1220_653a_9d56_8a0a0cef8f59["__init__()"]
  a0b7e819_2437_7857_901f_3fcd4c42d0fc -->|method| bd59992e_1220_653a_9d56_8a0a0cef8f59
  4b9c98db_5795_2581_3df1_7e7993e5bf12["models()"]
  a0b7e819_2437_7857_901f_3fcd4c42d0fc -->|method| 4b9c98db_5795_2581_3df1_7e7993e5bf12
  3f569280_2cf9_03cc_1f1e_e5b8f359f5ee["messages()"]
  a0b7e819_2437_7857_901f_3fcd4c42d0fc -->|method| 3f569280_2cf9_03cc_1f1e_e5b8f359f5ee
  d7889193_800c_2ffc_88b1_9ad1014049e1["files()"]
  a0b7e819_2437_7857_901f_3fcd4c42d0fc -->|method| d7889193_800c_2ffc_88b1_9ad1014049e1
  868bfab7_db29_4108_99a2_3e0564d39a73["skills()"]
  a0b7e819_2437_7857_901f_3fcd4c42d0fc -->|method| 868bfab7_db29_4108_99a2_3e0564d39a73

Relationship Graph

Source Code

src/anthropic/resources/beta/beta.py lines 138–156

class AsyncBetaWithRawResponse:
    def __init__(self, beta: AsyncBeta) -> None:
        self._beta = beta

    @cached_property
    def models(self) -> AsyncModelsWithRawResponse:
        return AsyncModelsWithRawResponse(self._beta.models)

    @cached_property
    def messages(self) -> AsyncMessagesWithRawResponse:
        return AsyncMessagesWithRawResponse(self._beta.messages)

    @cached_property
    def files(self) -> AsyncFilesWithRawResponse:
        return AsyncFilesWithRawResponse(self._beta.files)

    @cached_property
    def skills(self) -> AsyncSkillsWithRawResponse:
        return AsyncSkillsWithRawResponse(self._beta.skills)

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free