frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Lobsters Interview with Claudius

https://alexalejandre.com/programming/interview-with-claude-roux/
1•birdculture•1m ago•0 comments

The Art of Loop Engineering

https://www.langchain.com/blog/the-art-of-loop-engineering
1•doppp•2m ago•0 comments

Next-Latent Prediction Transformers Learn Compact World Models (2025)

https://arxiv.org/abs/2511.05963
1•optimalsolver•4m ago•0 comments

Mekton (1995), mech first-person game from SGI ahead of time

https://www.neogaf.com/threads/mekton-1995-a-mech-first-person-game-from-sgi-ahead-of-time-from-t...
1•theletterf•6m ago•0 comments

A universal basic income could rebuild social cohesion (AU)

https://independentaustralia.net/politics/politics-display/a-universal-basic-income-could-rebuild...
1•robtherobber•10m ago•0 comments

An Early Example of Super Bad AI Governance

https://computerlove.tech/blog/super-bad-ai-governance
1•juunge•10m ago•0 comments

The Rape Gang Inquiry Report [pdf]

https://static1.squarespace.com/static/6810978a41bbc42489eafa81/t/6a314bb1151e511944bd4421/178161...
1•Redoubts•13m ago•0 comments

Jyllands-Posten Muhammad cartoons controversy (2005)

https://en.wikipedia.org/wiki/Jyllands-Posten_Muhammad_cartoons_controversy
1•simonebrunozzi•17m ago•0 comments

How to Sparkle in Conversation with Strangers

https://www.newscientist.com/article/2530034-how-to-sparkle-in-conversation-with-strangers/
2•Anon84•18m ago•0 comments

Multiplayer Surf_ski_2 in the Browser

https://www.surfski2.com/
1•possiblelion•18m ago•1 comments

Need a Co-Founder

1•gangaplains•21m ago•1 comments

Captured Logs Reveal Hackers Using Claude and Codex to Breach Companies

https://research.openanalysis.net/claude/codex/hacking/ai%20hacking/llm/redteam/policy%20violatio...
1•Tiberium•22m ago•1 comments

The discovery that changed how scientists think about memory – IBM

https://www.ibm.com/think/news/discovery-changed-how-scientists-think-about-memory-kavli-prize
1•rbanffy•22m ago•0 comments

How the UK government is using AI to speed up the planning system

https://takes.jamesomalley.co.uk/p/build-gemini-build
1•writerJames•23m ago•1 comments

Url.computer – client side URL parser and cURL query builder

https://url.computer/
1•interweb_tube•24m ago•1 comments

Kepp – save anything in one tap, no folders (iOS/Android)

https://kepp.io/
2•palpalych•25m ago•0 comments

Smarter Charging, An AI controller treats batteries differently as they age

https://spectrum.ieee.org/ev-charging-strategy
1•oldnetguy•25m ago•0 comments

How to Hack a Superyacht

https://thewalrus.ca/how-to-hack-a-superyacht/
1•pseudolus•26m ago•0 comments

Entrepreneurs in Nairobi make the case for going solar

https://www.technologyreview.com/2026/06/17/1138600/entrepreneurs-nairobi-case-for-going-solar/
1•joozio•28m ago•0 comments

IBM Turns 115 Today

https://www.threads.com/@therab/post/DZqsiiWjI-k
2•rbanffy•29m ago•1 comments

AIs on their own found ways to exploit regulations and evade current safeguards

https://www.science.org/content/article/ai-models-have-troubling-knack-discovering-legal-loopholes
2•pseudolus•29m ago•0 comments

Show HN: Digital inspection reports for any rental property

https://kamerinspectie.nl/en
1•tjardo•30m ago•0 comments

Huall, autonomous AI agents

https://huall.dev
1•Kreshnik•32m ago•1 comments

Scientists Find Intriguing Link Between Ozempic and Violent Behavior

https://gizmodo.com/scientists-find-intriguing-link-between-ozempic-and-violent-behavior-2000772629
1•akyuu•35m ago•0 comments

Structural steel estimating: the steps were never the hard part

https://bidferra.com/blog/the-honest-guide-to-structural-steel-estimating
2•fazlerocks•37m ago•0 comments

Lenovo releases new 14-inch ThinkPad with 64 GB RAM and built-in pen

https://www.notebookcheck.net/Lenovo-releases-new-14-inch-ThinkPad-with-64-GB-RAM-and-built-in-pe...
1•teleforce•39m ago•0 comments

RFC 10008: The new HTTP Query Method

https://www.rfc-editor.org/info/rfc10008/
2•schappim•41m ago•0 comments

From Combinatorial Mess to Linear Elegance: Architecting a Conversion Engine

https://blog.minimal.app/conversion-engine/
1•arthurofbabylon•43m ago•0 comments

Could Earth have sent life to Jupiter's moon Europa?

https://phys.org/news/2026-06-earth-life-jupiter-moon-europa.html
1•pseudolus•45m ago•1 comments

Color Picking OKLCH for Mortals

https://hugodaniel.com/posts/color-picking-oklch/
2•hugodan•45m ago•0 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?