Investigating ChatGPT Search: Insights from 80 Million Clickstream Records (Semrush Blog, Feb 2025)
Overview
This entry catalogs and analyzes the Semrush blog study "Investigating ChatGPT Search: Insights from 80 Million Clickstream Records" (February 2025).
- Source: https://www.semrush.com/blog/chatgpt-search-insights/
- Type: Industry blog post / data study
- Section: Blog posts, whitepapers
- Semrush's study is based on approximately 80 million clickstream records and investigates how ChatGPT Search behaves as an information retrieval system — a core question in the LLM era: how should responsibilities be redistributed across retrieval, ranking, generation, and tool calling?
- The entry situates the work within the evolution of neural information retrieval: from BM25 to dense dual-tower retrieval, cross-encoders, late interaction, generative retrieval, and finally agentic search, where the number and strategy of retrieval steps become learnable decisions.
- Core components discussed for modern systems: representation learning, retrievers, rerankers, planners, memory modules, and feedback mechanisms, combined via supervised fine-tuning, contrastive learning, distillation, or reinforcement learning.
- Evaluation considerations include datasets such as MS MARCO and BEIR, metrics like nDCG@10, MRR, Recall@k, task success rate, latency, and token cost, with baselines including BM25, dense retrieval, cross-encoder reranking, and commercial search APIs.
- Adobe Analytics: Traffic to U.S. retail websites from generative AI sources
- Evaluating search relevance part 2: Phi-3 as relevance judge
- Foundation Model for Personalized Recommendation by Netflix (Mar 2025)
- Increase web search accuracy and efficiency with dynamic filtering (Feb 2025)
- PDF Retrieval with Vision Language Models (ColPali)
Key points
Insights for search, recommendation, and personalization
1. Architecture: Cascaded retrieval + reranking + generation remains mainstream, but agentic paradigms treat retrieval policy itself as learnable. 2. Data: High-quality instruction data and click/session logs are both critical; synthetic data requires protection against knowledge leakage and distribution shift. 3. Evaluation: The gap between offline metrics and online satisfaction is widening; LLM-as-judge needs cross-validation with human evaluation. 4. Product: Latency, cost, explainability, and safety are hard constraints for industrial deployment — optimizing academic benchmarks alone is insufficient.
Engineering checklist (from the entry)
| Area | Question | Recommendation | |------|----------|----------------| | Data | PII in training/index data? Version control? | Sharded indexes, anonymization, rollback-able embedding versions | | Latency | p99 budget? Retrieval steps? | Cascade + early stopping, hot-query caching, async reranking | | Quality | Do offline gains translate to online CTR/satisfaction? | Interleaving experiments, human audits, citation verification | | Safety | Does open retrieval introduce poisoning/bias? | Source whitelists, adversarial detection, output filtering | | Cost | Per-query token and GPU usage? | Route to smaller models, distillation, hybrid sparse+dense retrieval |
Limitations and open problems
Noted limitations include experiment scale constrained by compute budgets, benchmark-vs-real-user distribution mismatch, English-centric data with unknown cross-lingual generalization, and safety risks of agentic systems operating on the open web. Future directions include more efficient test-time compute allocation, deeper integration with knowledge graphs and structured databases, and causal/fairness constraints for recommender systems.