Deep Research
यह क्यों मायने रखता है
गहन अध्ययन
Deep research run normal chat completion जैसी बिल्कुल नहीं दिखती। Prompt मिलने पर system पहले question को research plan में decompose करता है: sub-questions, search queries और pursue करने लायक angles का set। फिर यह loop करता है — searches issue करना, pages खोलना, पढ़ना और आगे क्या chase करना तय करना — कुछ minutes से half hour तक, रास्ते में अक्सर dozens of sources consult करते हुए। Intermediate findings working notes में accumulate होती हैं और final synthesis pass उन notes को inline citations वाली structured report में बदलता है। अंदर से यह Autonomous Agent के planning loop के अधिक करीब है, classic RAG के single-shot document lookup के नहीं।
Agent Loop कैसे काम करता है
Core loop है plan, search, read, reassess। Pages के हर batch के बाद model अपनी understanding update करता और अभी missing चीज़ों, disagree करते sources तथा second confirmation चाहने वाले claims के आधार पर next queries चुनता है। यहीं यह classic RAG से diverge करता है: retrieval one-shot lookup नहीं बल्कि model द्वारा खुद steer iterative process है। Browsing टूल यूज़ — search, open-page और कभी code-execution tools — से होती है और agent ने जो कुछ पढ़ा है वह कॉन्टेक्स्ट विंडो में fit होना चाहिए, इसलिए ये systems raw text जमा करने के बजाय pages को aggressively notes में distill करते हैं।
Reasoning Models ने Game क्यों बदला
Deep research practical तभी हुई जब models thread खोए बिना work की long chains sustain कर सके। Single run dozens of search-and-read steps तक जा सकता है, इसलिए underlying model को plan hold करना, open questions track करना और new source के earlier assumption से contradict होने पर notice करना होता है। OpenAI का version real browsing tasks पर reinforcement learning से fine-tuned reasoning model से powered है और competing products अपने reasoning-capable flagships पर निर्भर हैं। प्रभावी रूप से deep research search पर खर्च टेस्ट-टाइम कम्प्यूट है: system ऐसे answer के लिए minutes के तर्क तथा browsing trade करता है जिसे कोई single forward pass produce नहीं कर सकता।
Citations Guarantee नहीं हैं
Inline links वाली polished report over-trust बुलाती है और यही main failure mode है। Citation आपको बताता है कि model ने page खोला, यह नहीं कि page वही कहता है जो report claim करती है, और citation-to-claim mismatches इतने common हैं कि spot-checking essential रहती है। Systems open web के biases भी inherit करते हैं: SEO-driven content, outdated pages तथा marketing material सभी primary sources जितने patience से पढ़े जाते हैं, जबकि paywalled या unindexed material invisible रहता है। किसी generator की तरह model details हैलूसिनेशन कर सकता है और plausible-sounding synthesis से evidence gaps quietly छिपा सकता है। Output को बहुत fast research assistant का strong first draft मानें, finished fact-checked deliverable नहीं।
Field और उसकी Measurement
Gemini ने दिसंबर 2024 में पहला Deep Research ship किया; OpenAI का फरवरी 2025 launch, शुरू में monthly run quota वाले highest-priced subscription tier तक limited, वही था जिसने इसे एक category बनाया। कुछ months में Perplexity ने answer engine में एक जोड़ा और xAI ने Grok में DeepSearch release किया। Access तेज़ी से widened हुआ और mid-2025 तक अधिकतर major assistants किसी form का multi-step research mode देते थे। Open-source recreations parallel में आए, आम तौर पर agent scaffold के भीतर search API को reasoning model से wire करके।
इन systems को measure करना बनाने से कठिन है। Most cited early result Humanity's Last Exam है, कई disciplines के expert-level questions का benchmark, जहाँ OpenAI के Deep Research ने करीब quarter questions correct answer किए — उस समय standard chat models के single-digit scores से बहुत ऊपर। Vendors GAIA, agentic assistant बेंचमार्क, पर भी strong results report करते हैं। कोई benchmark सीधे report quality capture नहीं करता: citation precision, source diversity और human reader के लिए usefulness अब भी मुख्यतः हाथ से judge होते हैं, तथा independent evaluations thin रहती हैं।