frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open knowledge compiler: a compiler for the open knowledge format

https://towardsdev.com/announcing-open-knowledge-compiler-a-compiler-for-the-open-knowledge-forma...
1•deepmem•2m ago•0 comments

Chatbots are doing the work of Congress with little oversight

https://www.washingtonpost.com/politics/2026/08/13/chatbots-are-doing-work-congress-with-little-o...
1•thm•2m ago•0 comments

DeepSeek peak/off-peak pricing update

https://api-docs.deepseek.com/news/news260813/
1•fagnerbrack•3m ago•0 comments

Gemini 3.7 Flash: On the Intelligence vs. Time per Task Pareto frontier

https://artificialanalysis.ai/articles/gemini-3-7-time-frontier
1•frozenseven•3m ago•0 comments

I burned $157,143 in tokens last month. I paid $400

https://www.orcdev.com/blog/ai-subscriptions
1•theHocineSaad•7m ago•0 comments

Show HN: RAGless – similar to RAG, but $0 LLM API costs at runtime

https://github.com/EmilResearch/RAGless
2•emilianoc•7m ago•1 comments

Super Mario Bros. speedrunning

https://en.wikipedia.org/wiki/Super_Mario_Bros._speedrunning
1•frozenseven•9m ago•0 comments

Pinterest Dark Mode and Theme

https://chromewebstore.google.com/detail/dark-mode-for-pinterest-—/acgmkcgkegbgcdmhabifeigllicf...
1•trungpv1601•11m ago•0 comments

Ketamine increases neuroplasticity in female mice but not in males

https://alleninstitute.org/news/ketamine-increases-neuroplasticity-in-female-mice-but-not-in-males
2•geox•12m ago•1 comments

Bring your spreadsheet data to life with Sheets canvas

https://blog.google/products-and-platforms/products/workspace/sheets-canvas-for-google-sheets-spr...
1•squidi•14m ago•0 comments

Announcement on DeepSeek V4 API New Pricing

https://cdn.deepseek.com/emails/v4-new-pricing-en.PNG
1•ThomasGlanzmann•14m ago•2 comments

How to export ChatGPT chat to pdf, word and Google Docs [video]

https://www.youtube.com/watch?v=E4oIlt8yaH4
4•quysala123•15m ago•1 comments

The Empty Nest Scenario

https://michielbdejong.com/blog/empty-nest-scenario
2•michielbdejong•16m ago•1 comments

EU AI Act and C2PA: What Article 50 Requires

https://c2paviewer.com/articles/eu-ai-act-content-credentials
2•Bluestein•17m ago•0 comments

I’m a very slow thinker (2016)

https://sive.rs/slow
2•Leftium•18m ago•1 comments

The continuing "Q collar" scandal

https://statmodeling.stat.columbia.edu/2026/08/13/we-should-probably-be-doing-more-coverage-of-sc...
3•luu•19m ago•0 comments

Contiguous US breaks its record for hottest month ever, NOAA says

https://apnews.com/article/hottest-month-july-climate-change-4a9d612281485356103631f0f09b61af
4•robtherobber•21m ago•0 comments

Scalable watermarking for identifying large language model outputs

https://www.nature.com/articles/s41586-024-08025-4
2•Bluestein•21m ago•0 comments

NHS bans pagers due to lack of encryption

https://www.bbc.com/news/articles/clyj92j210do
3•angry_octet•22m ago•0 comments

Openring: A webring for static site generators

https://git.sr.ht/~sircmpwn/openring
2•luu•24m ago•0 comments

Show HN: OpenComplAI – open-source EU AI Act compliance checks in CI/CD

https://github.com/opencomplai/opencomplai
3•ythouma•29m ago•0 comments

Show HN: Fail the Build on Direct Service Calls

https://github.com/vijayagopalsb/isolation-tax
1•vijayagopal•30m ago•0 comments

Mistral is serving GLM 5.2

https://docs.mistral.ai/models/zai-glm-5-2
3•Vaskivo•37m ago•1 comments

New DeepSeek Pricing Published (Peak and Off-Peak)

3•mittermayr•37m ago•3 comments

The Importance of Whimsy

https://christiansafka.com/blog/the-importance-of-whimsy/
2•christiansafka•38m ago•0 comments

Let's not call it "tech debt," it's just "mess"

https://www.simplermachines.com/lets-not-call-it-tech-debt-its-just-mess/
4•birdculture•39m ago•1 comments

Drift Anchor -quick access to your proven AI prompts

https://microsoftedge.microsoft.com/addons/detail/dpedbbcbfmpjjonjolngjjpclkgahlpm
1•ballista2026•41m ago•0 comments

The Reason Data Center Gas Power Plants Are So Dirty

https://www.wired.com/story/real-reason-data-center-gas-power-plants-are-so-dirty/
1•beardyw•45m ago•0 comments

Building a practical path to post-quantum cryptography

https://www.technologyreview.com/2026/08/13/1141041/building-a-practical-path-to-post-quantum-cry...
1•theanonymousone•46m ago•0 comments

There Is Still No Silver Bullet

https://cekrem.github.io/posts/there-is-still-no-silver-bullet/
4•theanonymousone•47m 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?