Anthropic Claude
Anthropic Claude Integration (April 2026)
Section titled “Anthropic Claude Integration (April 2026)”AgentV provides first-class support for the Anthropic Claude ecosystem, including the latest Claude 4.6 models.
🚀 Native Protocol
Section titled “🚀 Native Protocol”Use the claude protocol to connect directly to the Anthropic API.
agentv run --path scenarios/loan_scenario.json --protocol claude --agent claude://claude-4-6-sonnetConfiguration
Section titled “Configuration”Ensure your ANTHROPIC_API_KEY is set in your .env file.
ANTHROPIC_API_KEY=sk-ant-xxx🛠 Model Support
Section titled “🛠 Model Support”As of April 2026, the following models are prioritized in the industrial baseline:
Claude-4.6-Sonnet(Standard)claude-4-6-opus(High-Reasoning)claude-4-5-haiku(Fast)
🏗 Framework Integration
Section titled “🏗 Framework Integration”If you are using Claude with a framework like Claude Code or LangGraph, see the respective guides:
🧪 Advanced: Multi-Modal (Vision)
Section titled “🧪 Advanced: Multi-Modal (Vision)”The claude adapter supports high-fidelity vision tasks. To benchmark multimodal performance, ensure your agent payload includes standard image components.
{ "messages": [ { "role": "user", "content": [ {"type": "text", "text": "Describe this image."}, {"type": "image", "source": {"type": "base64", "media_type": "image/jpeg", "data": "..."}} ] } ]}