Integration with Anthropic's Claude API.
AnthropicClient- Chat client for Anthropic Claude modelsAnthropicChatOptions- Options TypedDict for Anthropic-specific parameters
from agent_framework.anthropic import AnthropicClient
client = AnthropicClient(model_id="claude-sonnet-4-20250514")
response = await client.get_response("Hello")from agent_framework.anthropic import AnthropicClient
# or directly:
from agent_framework_anthropic import AnthropicClient