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

azure.py — anthropic-sdk-python Source File

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

File python 1 imports

Entity Profile

Dependency Diagram

graph LR
  89150556_80b2_d52f_537e_7f72f7410046["azure.py"]
  d10c5377_2939_0f0b_cc44_8759393f2853["anthropic"]
  89150556_80b2_d52f_537e_7f72f7410046 --> d10c5377_2939_0f0b_cc44_8759393f2853
  style 89150556_80b2_d52f_537e_7f72f7410046 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

# /// script
# requires-python = ">=3.9"
# dependencies = [
#     "anthropic",
# ]
#
# [tool.uv.sources]
# anthropic = { path = "../", editable = true }
# ///

from anthropic import AnthropicFoundry

cl = AnthropicFoundry(
    resource="your-resource-name",
    api_key="your-foundry-anthropic-api-key",
)

response = cl.messages.create(
    model="claude-haiku-4-5",
    messages=[
        {"role": "user", "content": "Hello!"},
    ],
    max_tokens=1024,
)

print(response)

Dependencies

  • anthropic

Frequently Asked Questions

What does azure.py do?
azure.py is a source file in the anthropic-sdk-python codebase, written in python.
What does azure.py depend on?
azure.py imports 1 module(s): anthropic.
Where is azure.py in the architecture?
azure.py is located at examples/azure.py (directory: examples).

Analyze Your Own Codebase

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

Try Supermodel Free