{"slug": "claude-opus-5-5-is-now-on-google-cloud-and-i-think-it-s-a-big-deal-for", "title": "Claude Opus 5.5 Is Now on Google Cloud, and I Think It's a Big Deal for Developers", "summary": "Anthropic released Claude Opus 5.5, making it available on AWS, Google Cloud, and Microsoft Azure from day one, with Google publishing its own model page for the release. The new model in the Claude 5.5 family performs at the level of Claude Fable 5.1 on most work while costing 40% less to run than Opus 5, with input and output tokens priced at $4 and $20 per million and cache reads at $0.20 per million. Anthropic says the model is especially suited to long, sprawling jobs such as codebase-wide migrations and audits, and Google lists its retirement date as no sooner than September 22, 2027.", "body_md": "Anthropic released Claude Opus 5.5 this week, and it's [available on Amazon Web Services, Google Cloud, and Microsoft Azure](https://www.anthropic.com/claude-opus-5-5) from day one. Google has also [published its own model page](https://docs.cloud.google.com/gemini-enterprise-agent-platform/models/partner-models/claude/opus-5-5) for it. I spent some time going through the announcement and the Google Cloud docs, and this release stands out to me for one simple reason: it's more capable *and* cheaper at the same time. Here's what caught my attention and what you should know before you try it.\n\nOpus 5.5 is the first model in the new Claude 5.5 family. Anthropic says it performs at the level of Claude Fable 5.1 on most work and costs 40% less to run than Opus 5. That's notable because Fable sits in Anthropic's higher, more expensive tier.\n\nThe benchmark numbers back this up. On Terminal-Bench 4.0, which tests multi-step tasks in a command line, Opus 5.5 scores 66.4%, compared with 55.8% for Fable 5.1 and 52.3% for Opus 5. Anthropic does add a fair caveat: at this level of capability, benchmark margins have become a less reliable guide to real-world differences.\n\nInput and output tokens now cost $4 and $20 per million, 20% less than Opus 5. Cache reads, which make up most of the cost in agentic and coding work, are $0.20 per million tokens, 60% cheaper than before. It also generates output more than 30% faster than Opus 5.\n\nThe savings add up because it also uses fewer tokens per task. Lower price per token plus fewer tokens nets out to a 40% cost drop.\n\nOne note: these are Anthropic's list prices. Google Cloud bills Claude usage through its own generative AI pricing page, so check the rates for your region before estimating costs.\n\nAnthropic says Opus 5.5 is especially good at long, sprawling jobs like codebase-wide migrations and audits. A few examples from the announcement:\n\nThis is a quieter change, but I think developers will appreciate it. Anthropic says Opus 5.5 puts the most important information first, is less likely to use jargon, and follows the writing rules you give it. If you've ever tried to review a long, rambling agent summary at the end of the day, you'll know why this matters.\n\nIf your team already runs on Google Cloud, this is the easiest way in. You keep your existing IAM, billing, and monitoring, and you get data residency options: multi-region endpoints that route dynamically within the US or EU, or regional endpoints that guarantee routing through a specific region.\n\nIt's also useful for planning that Google lists the model's retirement date as no sooner than September 22, 2027, so you can build on it knowing it won't disappear anytime soon.\n\nGetting started looks straightforward. First, install the SDK with Google Cloud support:\n\n```\npip install -U \"anthropic[vertex]\"\n```\n\nThen enable the model in Model Garden, authenticate with Application Default Credentials (`gcloud auth application-default login`), and make a call:\n\n``` python\nimport os\nfrom anthropic import AnthropicVertex\n\n# Keep the project ID in an environment variable, not in code\nclient = AnthropicVertex(\n    project_id=os.environ[\"GCP_PROJECT_ID\"],\n    region=\"us\",  # multi-region: \"us\" or \"eu\"\n)\n\nmessage = client.messages.create(\n    model=\"claude-opus-5-5\",\n    max_tokens=1024,\n    messages=[{\"role\": \"user\", \"content\": \"Hey Claude!\"}],\n)\nprint(message.content[0].text)\n```\n\nIf you call the REST API directly instead of using the SDK, there are two differences from Anthropic's own API: the model is specified in the endpoint URL rather than the request body, and `anthropic_version` goes in the body with the value `vertex-2023-10-16`. Anthropic's [Claude on Google Cloud guide](https://platform.claude.com/docs/en/build-with-claude/claude-on-vertex-ai) walks through the full setup.\n\nSwapping the model ID is the easy part. The bigger work is usually fitting a new model into the systems around it: prompts, evals, cost monitoring, and fallbacks. That's the area our team focuses on in [LLM development and integration](https://www.lucentinnovation.com/services/llm-development), and it's where I'd spend most of the testing time before any switch.\n\nAnthropic says Claude Sonnet 5.5 and Claude Haiku 5.5 will follow in the coming weeks, with many of the same improvements to performance, efficiency, and safety. If those smaller models get similar efficiency gains, it'll be a very good few months for anyone building with AI.\n\nI'm planning to try Opus 5.5 on our own workloads soon, and I'll share what I find in a follow-up post. Have you tried it yet? Let me know in the comments what you're building with it.", "url": "https://wpnews.pro/news/claude-opus-5-5-is-now-on-google-cloud-and-i-think-it-s-a-big-deal-for", "canonical_source": "https://dev.to/lucy1/claude-opus-55-is-now-on-google-cloud-and-i-think-its-a-big-deal-for-developers-3jfg", "published_at": "2026-09-23 06:38:26+00:00", "updated_at": "2026-09-23 06:52:49.503219+00:00", "lang": "en", "topics": ["large-language-models", "ai-products", "ai-infrastructure", "ai-agents", "developer-tools"], "entities": ["Anthropic", "Claude Opus 5.5", "Google Cloud", "Amazon Web Services", "Microsoft Azure", "Claude Fable 5.1", "Claude Opus 5", "Model Garden"], "alternates": {"html": "https://wpnews.pro/news/claude-opus-5-5-is-now-on-google-cloud-and-i-think-it-s-a-big-deal-for", "markdown": "https://wpnews.pro/news/claude-opus-5-5-is-now-on-google-cloud-and-i-think-it-s-a-big-deal-for.md", "text": "https://wpnews.pro/news/claude-opus-5-5-is-now-on-google-cloud-and-i-think-it-s-a-big-deal-for.txt", "jsonld": "https://wpnews.pro/news/claude-opus-5-5-is-now-on-google-cloud-and-i-think-it-s-a-big-deal-for.jsonld"}}