frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Dataforge Honeypot – Simple decoy system for LAN intrusion alerts

https://honeypot.app.dataforgecanada.com/
1•CarlVon77•18s ago•0 comments

Apple, Google push for judicial oversight in Canada online safety bill

https://www.reuters.com/legal/litigation/apple-google-push-judicial-oversight-canada-online-safet...
1•1vuio0pswjnm7•28s ago•0 comments

UK Births fall to the lowest level in 50 years

https://www.bbc.com/news/articles/cvgzdq23xpgo
1•hmmmmmmmmmmmmmm•1m ago•0 comments

Authors Sue Meta's AI Scientists Directly in Llama Copyright Case

https://www.law.com/corpcounsel/2026/05/26/authors-sue-metas-ai-scientists-directly-in-llama-copy...
2•1vuio0pswjnm7•2m ago•0 comments

Securing Your AI Agent Infrastructure

https://teriradichel.substack.com/p/securing-your-ai-agent-infrastructure
1•mooreds•2m ago•0 comments

Show HN: Remove Audio | mute any video in the browser, no upload

https://remove-audio.com/
1•iamcodemaster•2m ago•0 comments

Anthropic co-founder hallucinates ghost in the machine

https://www.theregister.com/ai-ml/2026/05/27/anthropic-co-founder-hallucinates-ghost-in-the-machi...
1•joebuckwilliams•3m ago•0 comments

The LOGOS Framework: A five-level taxonomy for AI-assisted assessment

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6749961
1•vinicius-covas•4m ago•0 comments

Prose programs are Markdown contracts agents can run

https://openprose.ai/
1•mooreds•4m ago•0 comments

Removing Carbon using geochemistry and volcanic rocks

https://twitter.com/SparshAgarwall/status/2059658214044819524
1•sparshselim•8m ago•0 comments

WP23

https://wordpress.org/news/2026/05/wp23/
2•agbonghama•8m ago•0 comments

Champion ethical hacker warns AI tools like Mythos will make competing harder

https://www.bbc.com/news/articles/c3r2zjpryzro
3•tigerlily•10m ago•0 comments

IXI's autofocusing lenses are almost ready to replace multifocal glasses

https://www.engadget.com/wearables/ixis-autofocusing-lenses-multifocal-glasses-ces-2026-212608427...
2•amichail•10m ago•0 comments

Closely watched Parkinson's drug from Biogen, Denali comes up short

https://www.biopharmadive.com/news/biogen-denali-parkinsons-trial-failure-lrrk2/820961/
1•randycupertino•13m ago•1 comments

Fuelwise: Find the Cheapest Fuel Near You in Seconds

https://apps.apple.com/gb/app/fuelwise-uk-petrol-prices/id6762345341
1•perfexa•15m ago•0 comments

ARN: Local semantic memory server for AI agents (Pi 5, 22ms recall, 10/10 tests)

https://github.com/tuuhe99-del/ARN-Adaptive-Reasoning-Network
2•MrKali26•15m ago•0 comments

Germany Law to Force Algorithm Boost for State-Approved News

https://nonogra.ph/germany-considers-law-to-force-social-media-algorithm-boost-for-state-approved...
9•382hi•16m ago•1 comments

CC-Wiki: Turn Claude Code sessions into a shareable knowledge base wiki

https://github.com/tejpalv/cc-wiki
3•tejpal-diffuse•16m ago•2 comments

Thornton Wilder's Last Play Vanished into Thin Air. Or Did It?

https://www.nytimes.com/2026/05/27/theater/thornton-wilder-emporium-last-play.html
1•lermontov•17m ago•0 comments

UK Visa Portal exposed applicants' passports and selfies

https://techcrunch.com/2026/05/27/uk-visa-portal-spilled-thousands-of-applicants-passports-and-se...
2•LordAtlas•19m ago•0 comments

Volvo gets US approval to bypass Chinese connected-car ban

https://arstechnica.com/cars/2026/05/volvo-gets-us-government-approval-to-bypass-chinese-connecte...
3•logickkk1•20m ago•0 comments

Show HN: Gandalf the Grader

https://github.com/Handshake-AI-Research/gandalf-the-grader
1•anishathalye•20m ago•0 comments

Agents-Collab.md – A live handoff protocol for multi-agent projects

https://github.com/Rlealbarili/Agents-Collab.md
1•Rlealbarili•21m ago•0 comments

Ask HN: What would you like to rant about?

3•iamalizard•23m ago•5 comments

Thea Energy Raises $100M Series B Funding to Build Scalable Fusion Power Plants

https://thea.energy/press-release/thea-energy-raises-100-million-series-b-funding-to-build-scalab...
3•actinium226•23m ago•0 comments

What's an Entity, Anyway?

https://docs.eventsourcingdb.io/blog/2026/05/28/whats-an-entity-anyway/
1•goloroden•24m ago•0 comments

Atomically Precise Mechanosynthesis of Carbon Structures on Hydrogenated Si(100)

https://www.somewhereville.com/2026/05/27/atomically-precise-mechanosynthesis-of-carbon-structure...
2•dannyobrien•25m ago•0 comments

Windows computer-use: synthetic cursors for background agents

https://github.com/trycua/cua/blob/main/blog/inside-windows-computer-use.md
2•frabonacci•25m ago•0 comments

I found a second vote.gov – and it's registered to the White House

https://thedreydossier.substack.com/p/i-found-a-second-votegov-and-its
5•philips•26m ago•1 comments

Building current, a browser-based file sharing tool, with Rust and WASM

https://current.rdvz.app/blog/building-current
1•laptou•26m ago•1 comments
Open in hackernews

Ask HN: How do you send large sets of data to an LLM

2•obayesshelton•1y ago
So, I am hitting limits with the amount of data I am sending to Claude via the API.

I am trying to send about 5000 comments but I would love to send more but I am hitting limits of the message size.

What are some good design patterns when sending large sets of data to an LLM?

I ideally need to send all the data together at it gives context to the overall prompt.

Comments

curious_curios•1y ago
Some approaches we’ve used:

- Group the comments by theme, then pass groups to the LLM to summarize/deduplicate then pass the outputs of that as context.

- RAG where only relevant parts are included in the context.

- Use an LLM with a larger context window (like Gemini pro)

obayesshelton•1y ago
Yeah, I think I need to use Gemini

Question, how if possible could you query rows in a table?

Surely the better approach would be to have some sort of connection to table rows?