Files
microsoft--agent-framework/python/packages/anthropic/AGENTS.md
Nick Brady 54617557e6 Update Foundry branding (#6999)
Replace user-facing Azure AI Foundry branding with Microsoft Foundry across docs, samples, comments, and display text while preserving technical identifiers.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Evan Mattson <35585003+moonbox3@users.noreply.github.com>
2026-07-14 06:44:26 +00:00

854 B

Anthropic Package (agent-framework-anthropic)

Integration with Anthropic's Claude API.

Main Classes

  • AnthropicClient - Chat client for Anthropic Claude models
  • AnthropicFoundryClient - Anthropic chat client for Microsoft Foundry's Anthropic-compatible endpoint
  • AnthropicBedrockClient - Anthropic chat client for Amazon Bedrock
  • AnthropicVertexClient - Anthropic chat client for Google Vertex AI
  • AnthropicChatOptions - Options TypedDict for Anthropic-specific parameters

Usage

from agent_framework.anthropic import AnthropicClient

client = AnthropicClient(model="claude-sonnet-4-20250514")
response = await client.get_response("Hello")

Import Path

from agent_framework.anthropic import AnthropicClient
# or directly:
from agent_framework_anthropic import AnthropicClient