DEV Community

Atheer
Atheer

Posted on

## The Vanishing Memory of the Web

The Vanishing Memory of the Web

The internet once stored a huge amount of human knowledge. Search engines made that knowledge easy to find. Now AI models are trained on the web’s content and then replace traditional search. The models keep only patterns, not the original pages. When a page disappears, the AI can still answer, but the exact source is lost. This means the collective memory of the internet is fading.

The shift also changes how information is verified. With a search engine, the URL and date are visible. With AI, the answer appears without a clear citation. Readers cannot check the original context. This makes it harder to spot errors or bias. The trend raises concerns for historians, journalists, and anyone who needs reliable records.

# Simple example: compare search vs AI response
import requests

def search_query(query):
    # Traditional search (placeholder URL)
    return requests.get(fhttps://api.search.com?q={query}).json()

def ai_answer(query):
    # AI model call (placeholder)
    return requests.post(https://api.ai.com/answer, json={prompt: query}).json()

print(search_query(history of the internet))
print(ai_answer(history of the internet))
Enter fullscreen mode Exit fullscreen mode

The article discusses these changes in detail.

Source: As AI eats the web, the internet’s collective memory is disappearing

Top comments (0)