SShortSingh.
Back to feed

Founder Measures AI Brand Visibility After Gemini Misidentifies His New Company

0
·3 views

When entrepreneur launched Luxcerta, a platform that tracks how AI models represent brands, he discovered that Gemini with web grounding mistook his company's name for a typo and flagged his domain as a possible phishing site. Running his own product's measurement method on day one, he recorded zero correct mentions or citations across ten queries to Gemini. Notably, Google Search's AI Overview correctly identified Luxcerta from homepage metadata on the very same day, highlighting how different AI surfaces can reach opposite conclusions about the same brand. To improve AI recognition, he added structured schema.org data, a clearer meta description, a disambiguating GitHub profile, and submitted a fresh sitemap via Search Console. One week later, Gemini's grounded responses began correctly identifying Luxcerta, though he cautions the case involves one brand over one week with no controlled variables.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

How to Choose the Right Multimodal AI API for Your Workload in 2026

Selecting a multimodal AI API in 2026 requires matching the platform to the specific workload rather than simply comparing model counts or opting for a single provider. Key questions include what output types are needed, whether models are commercial or custom-deployed, and how billing units like tokens, megapixels, or generated seconds align with actual usage. Four platform categories stand out: cross-provider gateways for mixed workloads, Replicate for open-model experimentation, fal.ai for high-volume media generation, and Google Vertex AI for teams already operating within Google Cloud. Vertex AI is particularly suited to regulated or governance-heavy environments, where Google's own models — Gemini, Imagen, Veo, and Lyria — integrate with existing IAM policies and regional controls. Pricing figures cited, such as Gemini 3.8 Flash at $0.75 per million input tokens, reflect a September 2026 snapshot and should be independently verified before being used in cost models.

0
ProgrammingDEV Community ·

IBM's Chunkless RAG Challenged: Does Ditching Document Chunks Actually Help?

IBM has been promoting a 'Chunkless RAG' approach that uses AI agents to navigate document structure — preserving headings, tables, and hierarchies — instead of splitting text into fixed-size chunks for embedding. Critics argue the method is overhyped, noting that real-world document corpora — including scanned PDFs, legal contracts, and Slack exports — are too messy for reliable structure parsing. When a parser fails to extract a clean document tree, the navigating agent simply traverses noisy data with added latency, swapping one failure mode for another that is harder to detect. Analysts also point out that the core retrieval problem in most pipelines is poor query-to-passage semantic overlap, which Chunkless RAG does not inherently solve. Techniques like hypothetical document embeddings, query expansion, and hybrid BM25-plus-dense-vector retrieval are seen as more reliably moving the needle on retrieval precision.

0
ProgrammingDEV Community ·

Developer builds TGDown Chrome extension for one-click Telegram Web media downloads

A developer has released TGDown, a Manifest V3 Chrome extension built with TypeScript and Vue that adds download controls for images and videos directly within Telegram Web. The extension supports both Telegram Web interfaces and offers one-click downloads, batch downloads from search results, and a popup panel listing detected media. TGDown operates across three execution contexts — a content script, a page-context script, and extension pages — to stay isolated from Telegram's internal code while using its existing authenticated session. During development, a critical dark-mode bug caused the entire Telegram page to flash white due to a full-screen iframe rendering the browser's default white canvas before initializing. The developer resolved the issue by replacing the iframe approach with a Shadow DOM host, which maintains CSS isolation without introducing a separate document rendering surface.

0
ProgrammingDEV Community ·

Why Video Background Removal Fails and How Temporal AI Models Fix It

Developers commonly misapply image-based background removal tools to video, treating each frame as an independent photo rather than part of a continuous temporal sequence. This approach causes visible flickering, ghosting on fast movements, and inconsistent edge detection between frames. Architectures like Robust Video Matting (RVM) address this by using recurrent neural networks that carry memory across frames, enabling stable real-time matting at resolutions up to 4K. A separate but related pitfall is exporting transparent video as H.264 MP4, which does not support an alpha channel, causing transparent pixels to render as black; formats like WebM or ProRes 4444 MOV are needed for true transparency. Understanding both the temporal processing model and format constraints is essential for developers building reliable video segmentation pipelines.