Vercel News

Claude Opus 4.7 on AI Gateway

5.5内容质量
Claude Opus 4.7 on AI Gateway

TL;DR · AI 摘要

Vercel AI Gateway 新增对 Anthropic Claude Opus 4.7 的支持,强调其在异步智能体和多步骤任务中的优化。

核心要点

  • Claude Opus 4.7 已上线 Vercel AI Gateway
  • 该模型针对长时异步智能体任务优化
  • 适用于复杂、多步骤的 AI 工作流
#AI Gateway#Claude Opus#Anthropic#Vercel#大模型
打开原文

Claude Opus 4.7 on AI Gateway - Vercel

Skip to content

[](http://vercel.com/home)

  • Products
  • ##### Core Platform
  • Resources
  • ##### Company
  • ##### Learn
  • ##### Open Source
  • Solutions
  • ##### Use Cases
  • ##### Tools
  • ##### Users

Log InContact

Sign UpSign Up

Blog/Changelog

Claude Opus 4.7 on AI Gateway

Authors

![Image 1](https://twitter.com/shaper)![Image 2](https://twitter.com/rtaneja_)![Image 3](https://twitter.com/jerilynzheng)

2 min read

Copy URL

Copied to clipboard!

Apr 16, 2026

Claude Opus 4.7 from Anthropic is now available on Vercel AI Gateway.

Opus 4.7 is optimized for long-running, asynchronous agents and handles complex, multi-step tasks with reliable agentic execution. The model shows gains on knowledge-worker tasks, particularly where it needs to visually verify its own outputs.

Opus 4.7 is also stronger at programmatic tool-calling with image-processing libraries to analyze charts and figures, including pixel-level data transcription. It has high-resolution image support, which is useful for computer use, screenshot understanding, and document analysis workflows. Opus 4.7 now has improved memory, with agents that maintain structured memory store across turns seeing more reliable recall and fewer dropped facts without additional prompting.

To use Claude Opus 4.7 set model to anthropic/claude-opus-4.7 in the AI SDK. You can also try a new effort level: 'xhigh'.

code
1import { streamText } from 'ai';2
3const result = streamText({4  model: 'anthropic/claude-opus-4.7',5  prompt: 'Explain the halting problem in one paragraph.',6  providerOptions: {7    anthropic: {8      thinking: { type: 'adaptive' },9      effort: 'xhigh',10    },11  },12});

Opus 4.7 also introduces the task budgets feature. Task budgets let you set a total token budget for an agentic turn via taskBudget. The model sees a countdown of remaining tokens, which it uses to prioritize work, plan ahead, and wind down gracefully as the budget is consumed. Thinking content is also now omitted by default for Opus 4.7. To receive thinking content, set display to 'summarized':

code
1import { streamText } from 'ai';2
3const result = streamText({4  model: 'anthropic/claude-opus-4.7',5  prompt: 'Research how this codebase handles authentication and suggest improvements.',6  providerOptions: {7    anthropic: {8      thinking: { type: 'adaptive', display: 'summarized' },9      effort: 'high',10      taskBudget: { type: 'tokens', total: 50000 },11    },12  },13});

AI Gateway provides a unified API for calling models, tracking usage and cost, and configuring retries, failover, and performance optimizations for higher-than-provider uptime. It includes built-in custom reporting, observability, Bring Your Own Key support, and intelligent provider routing with automatic retries.

Learn more about AI Gateway, view the AI Gateway model leaderboard or try the model in our model playground.

Ready to deploy?Start building with a free account. Speak to an expert for your _Pro_ or Enterprise needs.

Start DeployingTalk to an Expert

Explore Vercel Enterprise with an interactive product tour, trial, or a personalized demo.

Explore Enterprise

Get Started

Build

Scale

Secure

Resources

Learn

Frameworks

SDKs

Use Cases

Company

Community

[](http://vercel.com/home)

Loading status…Select a display theme:system light dark