Home / File/ beta_memory_tool_20250818_command.py — anthropic-sdk-python Source File

beta_memory_tool_20250818_command.py — anthropic-sdk-python Source File

Architecture documentation for beta_memory_tool_20250818_command.py, a python file in the anthropic-sdk-python codebase. 15 imports, 1 dependents.

File python AnthropicClient 15 imports 1 dependents

Entity Profile

Dependency Diagram

graph LR
  92c59c06_0071_86bb_3b80_3544f29fb810["beta_memory_tool_20250818_command.py"]
  40a4d499_6b34_0763_5e68_275c9212420c["_utils"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> 40a4d499_6b34_0763_5e68_275c9212420c
  4e28d0c4_8281_8ffa_0896_a91291faa449["beta_memory_tool_20250818_view_command.py"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> 4e28d0c4_8281_8ffa_0896_a91291faa449
  53ff8958_09f9_0b37_8a61_0eb90ad0bdd4["BetaMemoryTool20250818ViewCommand"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> 53ff8958_09f9_0b37_8a61_0eb90ad0bdd4
  d1d435c0_c961_6e2e_6b29_b30a55ac1e15["beta_memory_tool_20250818_create_command.py"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> d1d435c0_c961_6e2e_6b29_b30a55ac1e15
  4cba19eb_d602_e490_1269_cc9ebefc75f9["BetaMemoryTool20250818CreateCommand"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> 4cba19eb_d602_e490_1269_cc9ebefc75f9
  9c11d004_3e37_d986_cd72_815ca7a61453["beta_memory_tool_20250818_delete_command.py"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> 9c11d004_3e37_d986_cd72_815ca7a61453
  9737596e_ad73_0f98_e416_001b46030424["BetaMemoryTool20250818DeleteCommand"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> 9737596e_ad73_0f98_e416_001b46030424
  909528bb_012b_0715_cf32_8b423e6fdc59["beta_memory_tool_20250818_insert_command.py"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> 909528bb_012b_0715_cf32_8b423e6fdc59
  beb805e8_5c01_3045_faba_164db2211806["BetaMemoryTool20250818InsertCommand"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> beb805e8_5c01_3045_faba_164db2211806
  61fc8860_b7ff_2d9a_1862_76fdeaefbe36["beta_memory_tool_20250818_rename_command.py"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> 61fc8860_b7ff_2d9a_1862_76fdeaefbe36
  b736eeb7_b918_ab1f_e358_0642f9968e3e["BetaMemoryTool20250818RenameCommand"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> b736eeb7_b918_ab1f_e358_0642f9968e3e
  90b852e9_8886_4a0b_2b7f_05601b56ef2b["beta_memory_tool_20250818_str_replace_command.py"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> 90b852e9_8886_4a0b_2b7f_05601b56ef2b
  14cbbcfe_c9ae_607c_2d7d_5a0135830be7["BetaMemoryTool20250818StrReplaceCommand"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> 14cbbcfe_c9ae_607c_2d7d_5a0135830be7
  89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875["typing"]
  92c59c06_0071_86bb_3b80_3544f29fb810 --> 89ddcdd7_3ae1_4c7b_41bb_9f1e25f16875
  style 92c59c06_0071_86bb_3b80_3544f29fb810 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from typing import Union
from typing_extensions import Annotated, TypeAlias

from ..._utils import PropertyInfo
from .beta_memory_tool_20250818_view_command import BetaMemoryTool20250818ViewCommand
from .beta_memory_tool_20250818_create_command import BetaMemoryTool20250818CreateCommand
from .beta_memory_tool_20250818_delete_command import BetaMemoryTool20250818DeleteCommand
from .beta_memory_tool_20250818_insert_command import BetaMemoryTool20250818InsertCommand
from .beta_memory_tool_20250818_rename_command import BetaMemoryTool20250818RenameCommand
from .beta_memory_tool_20250818_str_replace_command import BetaMemoryTool20250818StrReplaceCommand

__all__ = ["BetaMemoryTool20250818Command"]

BetaMemoryTool20250818Command: TypeAlias = Annotated[
    Union[
        BetaMemoryTool20250818ViewCommand,
        BetaMemoryTool20250818CreateCommand,
        BetaMemoryTool20250818StrReplaceCommand,
        BetaMemoryTool20250818InsertCommand,
        BetaMemoryTool20250818DeleteCommand,
        BetaMemoryTool20250818RenameCommand,
    ],
    PropertyInfo(discriminator="command"),
]

Frequently Asked Questions

What does beta_memory_tool_20250818_command.py do?
beta_memory_tool_20250818_command.py is a source file in the anthropic-sdk-python codebase, written in python. It belongs to the AnthropicClient domain.
What does beta_memory_tool_20250818_command.py depend on?
beta_memory_tool_20250818_command.py imports 15 module(s): BetaMemoryTool20250818CreateCommand, BetaMemoryTool20250818DeleteCommand, BetaMemoryTool20250818InsertCommand, BetaMemoryTool20250818RenameCommand, BetaMemoryTool20250818StrReplaceCommand, BetaMemoryTool20250818ViewCommand, _utils, beta_memory_tool_20250818_create_command.py, and 7 more.
What files import beta_memory_tool_20250818_command.py?
beta_memory_tool_20250818_command.py is imported by 1 file(s): __init__.py.
Where is beta_memory_tool_20250818_command.py in the architecture?
beta_memory_tool_20250818_command.py is located at src/anthropic/types/beta/beta_memory_tool_20250818_command.py (domain: AnthropicClient, directory: src/anthropic/types/beta).

Analyze Your Own Codebase

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

Try Supermodel Free