u/Ok-Constant6488

Where's the Reimagine opt-out hiding now that Gemini Omni is in Shorts?

I spent way too long in the settings after I/O trying to turn this off properly and I'm still not sure I have.

If you missed it: Gemini Omni is now in Shorts and the Create app, free. The Reimagine flow lets someone grab a single frame from one of my Shorts, type a prompt, and get a 10-second AI clip out of it. Watermarked and linked back, sure, but it still lands in the same feed I'm trying to grow in.

The opt-out is what's bugging me. Desktop only. The toggle doesn't exist in the mobile app at all, which is where I do basically all my editing and posting. For the back catalog you can at least batch-select in Studio and set "allow only audio remixing" in one pass. The annoying part is new uploads: You have to dig into the advanced "Show more" settings and flip that same toggle every single time you post. There's no global default, no AI-Reimagine-specific switch, just the broader audio-only option.

If they were worried about how this lands they'd ship a one-tap mobile toggle, default-on. They didn't.

So asking everyone: Are you turning it off, leaving it on, or going video by video?

Has anyone seen a Reimagine of one of your own Shorts pop up yet, and how often is this firing in practice? Trying to decide whether the per-upload toggle is worth the friction or whether this is mostly hype.

reddit.com
u/Ok-Constant6488 — 1 day ago
▲ 58 r/mcp

Anthropic's new mcp tunnel architecture: the agent never holds the credential

Reading through the 19th May Claude managed agents update. The mcp tunnel update peaked my interest.

Apparently, the setup will be that a small gateway runs inside your network. It opens one outbound mTLS connection to anthropic. The agent reaches private mcp servers through that tunnel. No inbound firewall rules. No public endpoint. The mcp server inside your perimeter holds the credentials. The agent never sees them.

A normal managed agents deployment carries the tokens in the runtime. A long-lived oauth bearer for salesforce. A pat for github. A service account key for the warehouse. All sitting in the agent's context, where prompt injection, tool poisoning, or a supply chain hit can lift them.

With tunnels the credentials move to the perimeter. The agent makes a tool call, the call goes through the tunnel encrypted with a cert the customer issued, and a local mcp server with proper scoping turns it into an authenticated request. A prompt-injected agent has no token to steal. The blast radius now stops at whatever each individual mcp server allows.

Worth comparing to what OpenAI did in April. Their agents sdk update lets you move both the harness and the compute to your side. You can run the whole stack yourself. Anthropic chose not to. The agent loop stays on their infra. Only tool execution and mcp connectivity move out.

You don't own the loop. You own the boundary. Whether that trade lands for you depends on how much you trust anthropic to run the loop and how much vendor lock-in you can stomach.

A few caveats before anyone wires this up in prod:

  • Research preview, not ga. Suites and key rotation cadence are not in the public docs yet.
  • The orchestration plane runs on anthropic. If they have a bad day your agents have a bad day, and there is no failover path because the loop is not something you can stand up yourself.
  • Credentials still exist. they moved from the agent context to an mcp server you operate. That server still needs proper scoping, audit logging, and least-privilege downstream tokens. no architecture trick fixes that part.

For anyone running mcp servers in production: Does the split land in the right place for you, or would you rather own the whole loop the way openai's sdk lets you?

I put together a longer breakdown, that sheds more light on the new announcement.

u/Ok-Constant6488 — 1 day ago
▲ 303 r/claude+1 crossposts

Anthropic spent ~$300M on Stainless yesterday, and OpenAI's official Python SDK is now built by their biggest competitor

If you've ever run pip install openai, npm @anthropic-ai/sdk, or pulled the Google Generative AI client, you've used Stainless. They're the NY startup whose code-generation engine produces the official SDKs shipping with OpenAI, Google, Meta, Cloudflare, and Anthropic. Anthropic bought them yesterday for a reported $300M+.

Most coverage is framing it as a developer tools play. I think MCP is the actual reason this happened.

What actually changed hands:

  1. The engineering team. Roughly 40-50 people including founder Alex Rattray, who previously built Stripe's patented SDK generation system. Now under Anthropic's Platform Engineering org.
  2. The technology. The generator, templates, language-specific runtimes, OpenAPI extensions.
  3. The customer relationships. Stainless was generating SDKs for ~200 paying customers including every Anthropic competitor. The hosted product is winding down. New signups stopped Monday. Existing SDKs customers already generated stay theirs to keep.

Now sit with this from OpenAI's seat for a second. Their official Python and Node clients (tens of millions of weekly downloads combined) are Stainless output. They reportedly abandoned their internal SDK effort years ago because keeping six language SDKs in sync with a fast-moving API got too expensive. The engineers who maintain that pipeline now work for a direct competitor.

Zoom out on Anthropic's M&A over six months and it stops looking like disconnected purchases:

  • December 2025: Bun, the JS runtime, pulled into Claude Code
  • February 2026: Vercept, computer-use AI
  • April 2026: Coefficient Bio, ~$400M healthcare AI
  • May 2026: Stainless, SDK and MCP plumbing

They're not buying training infrastructure or GPU clusters. They're buying the layers around the model. The bet seems to be that models are converging in quality faster than anyone expected, so the moat is everywhere else. AWS made the same call about cloud computing fifteen years ago.

Sources:

u/Ok-Constant6488 — 2 days ago