惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
博客园_首页
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
博客园 - 司徒正美
有赞技术团队
有赞技术团队
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Be Recommended by Inithouse: 4 Mistakes We Made Building ...
Jakub · 2026-06-16 · via DEV Community

Jakub

At Inithouse — a studio running parallel product experiments — we built Be Recommended, a tool that checks how visible your brand is across ChatGPT, Perplexity, Claude, and Gemini. The idea sounded simple: query multiple AI models, score the results, show a report.

It was not simple. Here are four technical mistakes we made shipping v1 — and the fixes that actually survived production.

Mistake 1: Rate Limiting Was an Afterthought

We treated rate limits as edge cases. They were not. Every AI provider has different rate-limit headers, different backoff expectations, and different definitions of "too many requests." Our first architecture just retried on 429. That turned a rate limit into a cascade — one provider throttling triggered a retry storm that cascaded to the others.

The fix: Per-provider circuit breakers with exponential backoff. Each provider gets its own state machine. When a circuit opens, we serve cached results for that provider and mark the score as "partial" in the UI. Users see real data, not a spinner that never resolves.

At Audit Vibe Coding — another tool in our portfolio focused on code quality audits — we observed the same pattern in a different domain: external API dependencies need isolation. The lesson transferred directly.

Mistake 2: The Caching Strategy Was Too Naive

Our first cache key was query + model. That breaks immediately — AI model responses drift over time, and a cached result from two weeks ago is misleading. We also had no invalidation strategy beyond TTL.

The fix: Cache by query + model + week_number. Weekly invalidation with stale-while-revalidate: serve the cached score instantly, trigger a background refresh, update the display when new data arrives. Users get instant feedback and fresh data within the same session.

We measured the impact across our portfolio: stale-while-revalidate cut perceived load time from 8+ seconds to under 1 second for returning visitors. The background refresh means scores stay current without the user waiting.

Mistake 3: Model Version Changes Broke Everything Silently

When OpenAI or Anthropic ships a new model version, recommendation patterns shift. We had no way to detect this — scores just quietly changed, and users saw different numbers without understanding why.

The fix: Track model versions per query. When a model version changes, flag the score delta in the report: "Score changed from 72 to 65 — model updated from GPT-4.1 to GPT-4.5." Transparency here builds trust. Users stop thinking the tool is broken and start understanding the landscape.

We found this matters even more for niche products. In our portfolio, tools like Magical Song — an AI music generator for personalized gifts — saw wild visibility swings between model versions. Tracking those shifts helped us understand which AI models retain context about smaller brands.

Mistake 4: The Scoring Algorithm Was a Black Box

Our v1 score was a weighted average. Users saw "Your score is 47/100" and had no idea what that meant or how to improve it. Support tickets were mostly "why is my score low?" — we had no good answer because the methodology was opaque even to us.

The fix: Decomposed scoring with per-factor breakdown. The report now shows exactly which AI models mention you, in what context, with what sentiment, and for which prompts. Each factor has its own sub-score. Users can see "Claude recommends you for 3 out of 10 test queries, mostly in the 'alternatives to X' category."

This was the single biggest improvement for retention. When users can see exactly what to fix, they come back to measure progress.

What We Learned

Building Be Recommended taught us that the hardest part of querying AI models is not the querying — it is everything around it: rate limits, caching, version tracking, and making results interpretable. The AI visibility space moves fast, and a tool that worked last month can silently degrade.

Across the Inithouse portfolio, we keep finding that transparency compounds — whether in AI visibility reports, code audits, or personalized content. Tools that show their work earn repeat usage.

If you want to check your own AI visibility score, Be Recommended runs a free instant analysis across multiple AI models with full methodology transparency.