Guth Labs · Research
The feed observatory
Follow the data behind the briefing. Change the time window, inspect the sources, and take the instrument into your own work.
Live snapshot
Snapshot loaded. Updates are checked every minute while this page is visible.
180 entries · 177 publisher updates · 4 feeds
163 excerpts · 1 bylines · 80 images, among publisher updates.
Feed snapshot:
Try an instrument
How fresh is this briefing?
Run a filter over the current public snapshot. This measures publication recency, not whether a claim is correct.
Enable JavaScript to run this instrument, or use the code below.
Method and limits
Compares publisher timestamps with the current time on your device. Entries with unknown dates are excluded. Topic labels are inferred from headlines. The snapshot covers selected feeds over a rolling 90-day window; it is not a complete index of AI research.
Source checks
OpenAI News · 99 entries · Latest check succeeded
Last checked:
Hugging Face Blog · 65 entries · Latest check succeeded
Last checked:
Google Research Blog · 14 entries · Latest check succeeded
Last checked:
NVIDIA Deep Learning Blog · 1 entries · Latest check succeeded
Last checked:
Recent collection cycles
Each row is an actual source refresh. Changed entries include metadata enrichment. The first recorded cycle establishes a baseline. Up to 24 cycles are retained per source.
- · Google Research Blog · 0 new, 0 changed
- · OpenAI News · 0 new, 0 changed
- · Hugging Face Blog · 0 new, 0 changed
- · NVIDIA Deep Learning Blog · 0 new, 0 changed
- · OpenAI News · 0 new, 0 changed
- · Google Research Blog · 0 new, 0 changed
- · Hugging Face Blog · 0 new, 0 changed
- · NVIDIA Deep Learning Blog · 0 new, 0 changed
- · Google Research Blog · 0 new, 0 changed
- · OpenAI News · 0 new, 0 changed
- · Hugging Face Blog · 0 new, 0 changed
- · NVIDIA Deep Learning Blog · 0 new, 0 changed
Adopt this instrument
Build with the same data
Read the public JSON feed, observatory snapshot, or RSS feed. No account is required to read them.
Download the instrument specification
const feed = await fetch('https://news.guthlabs.ai/feed.json').then(r => {
if (!r.ok) throw new Error('News unavailable');
return r.json();
});
const hours = 168;
const now = Date.now();
const results = feed.stories.filter(story => {
const published = Date.parse(story.published_at);
return published <= now && published >= now - hours * 3600000;
});
console.log(results.map(({title, sources}) => ({title, sources})));Preserve source links and attribution. Publisher content retains its original rights. Check no more than once per minute; upstream feeds refresh every five minutes.
Contribute research
Community publishing is not open yet. Papers and experiments will need an author, sources, scope, method, results, and adoption terms before publication.