r/AIDevelopmentSpace

▲ 12 r/AIDevelopmentSpace+1 crossposts

Google has the best infra and talent, but internal politics is straight up killing their AI ecosystem.

I’ve been following Theo’s (t3.gg) recent breakdown on Google’s current state, and honestly, he hit the nail on the head. His TL;DR summary pretty much sums it up: "Google has the infrastructure, the talent, and the ecosystem, but internal politics ensures they never actually finish anything."
If you look at what's happening right now, Google's AI strategy is crumbling from the inside due to three major red flags:

  1. The Gemini 3.5 Flash Pricing Trap
    On paper, the benchmarks look insane. It's supposed to rival GPT-5.5 and Opus 47 on Terminal Bench and SWB Pro, pushing around 300 tokens/sec.
    But look closer at the launch details. They completely hid the dollar signs. The actual price? $9 per million output tokens. That’s 3x more expensive than Flash 3 and over 20x more than Gemini 2.0 Flash.
    To make it worse, its token efficiency is absolute garbage. In the exact same benchmark where GPT-5.5 Medium uses 22 million tokens, Gemini 3.5 Flash burns through 72-73 million tokens. That’s a 3.3x inflation. As the saying goes: "If it’s twice as fast but uses 4x more tokens, it’s actually twice as slow." Plus, in actual coding tests, it was the only model that couldn't even output working code, while GPT-5.5 spat out a fully functioning 3D version on the first try.

  2. The Anti-gravity CLI Open Source Betrayal
    The original Gemini CLI was a beloved open-source project with 100K GitHub stars and 6,000 merged PRs. The original devs (Dmitri, Jack, and Gal) built massive trust with the community.
    Then Google acquired the Windsurf founders, handed them the reins, and immediately replaced the original trio. They rebranded it to "Anti-gravity CLI," locked it behind a closed-source wall, and announced that starting June 18th, it's exclusive to Google AI Pro/Ultra subscribers.
    The new CLI is a buggy mess—no scrolling, exposed emails, Ctrl+C broken, and forced re-logins every single run. Even their official promo video accidentally showed a folder named “Codeex,” proving they're just lazily trying to copycat Cursor. The community trust Dmitri and his team built over a year of direct DMs and feedback just vanished overnight because of a corporate reshuffle.

  3. Google Cloud is Unreliable (The Railway Shutdown)
    Railway spends over $2M a month on GCP. Guess what Google did? They nuked Railway’s account without warning, throwing railway.app and all its hosted services offline.
    This is UniSuper all over again. Remember when Google Cloud "accidentally" deleted a $135B Australian pension fund’s entire account? If UniSuper didn’t have external backups, they would've been wiped out.

The contrast with competitors is stark. Azure might be clunky, but if you page them, they answer. AWS is #1 for a reason. Google Cloud’s lack of reliability at this scale is just baffling.

The Moat is Evaporating
This isn’t just typical vendor bashing. Google literally has everything—the best infra, top-tier research, TPUs, and a massive ecosystem. But their internal politics are murdering the product.
Trust is built person-by-person and destroyed by a single corporate reorg. Last month, people were complaining about Claude Code's billing routing, but Google just pulled a trifecta: hiding prices, betraying open source, and nuking a major customer’s cloud account.

A lot of people still blindly believe Google will win the AI race because they have the most resources. But tech history shows that more resources don't guarantee a win when your internal culture is rotted.
If you are currently building anything critical on top of Google’s ecosystem, get out. You can't trust them.

reddit.com
u/minkyuthebuilder — 2 days ago
▲ 4 r/AIDevelopmentSpace+4 crossposts

I built a small AI tool that checks if a text or email is a scam

Reason I built this: family group chats keep getting the same kind of message. "Is this real?" with a screenshot of some sketchy text. Fake USPS fee, IRS arrest threat, "wrong number" that pivots to a crypto pitch a few replies later. Same thing every week.

The people getting these are usually the ones least equipped to spot them, and the kids/grandkids they ping aren't always around in time.

So, small open-source web app for it. Paste the message or upload a screenshot, get a green/yellow/red verdict in plain English. Built so someone in their 70s can use it, not security people.

A few things worth mentioning. It's fully client-side, no backend, no telemetry. The message goes from your browser straight to Anthropic. There isn't a server I could peek at if I wanted to.

It's BYOK, so you plug in your own Anthropic API key (free to start). About a tenth of a cent per scan. I'm never monetizing this.

The scam pattern library is just JSON files in /scam-patterns/. If you've seen something in the wild that's not covered, PR a new file and everyone's version gets better. No retraining.

Built over a weekend with Claude Code after writing a proper spec. Stack is Vite, React, TypeScript, Tailwind. MIT.

Repo: https://github.com/srivatp2-code/scam-shield

Being honest about the limits, Claude can be wrong on both sides. It'll occasionally call a legit message suspicious, and it'll miss novel scams. It's a second opinion, not gospel. Always confirm with the real sender through a channel you trust.

What scam types am I missing in the starter library? Genuinely interested in adding the ones people have seen recently.

u/fhard007 — 2 days ago
▲ 19 r/AIDevelopmentSpace+1 crossposts

Which database client do you use?

I use beekeeper studio but I was thinking if there is any database client with AI enabled within. Which rectifies my queries if there is some minor error

Please share if you know of any such client paid or free.

As of now I just copy it and share it in chatgpt or ask claude code to generate it while performing a task

reddit.com
u/Rare_Impress5730 — 4 days ago

Tackling hallucination in GenAI development for technical manuals

We are building a RAG-based assistant to help engineers navigate 50,000+ pages of technical documentation. During our GenAI development, we've found that the model often hallucinates specific measurements or part numbers when the context window gets crowded.

We need to improve our retrieval accuracy and implement better guardrails. Has anyone worked with a specialist who can fine-tune the chunking and embedding process to ensure 100% factual accuracy for industrial data?

reddit.com
u/smartyladyphd — 11 days ago