frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nvidia PAIR turns your household's idle PCs into a local AI cluster

https://tokenstead.ai/guides/nvidia-pair-personal-ai-router
1•cdnsteve•30s ago•0 comments

What Did She Expect?" – Sexism and Classism Behind UK's Aesthetics Safety Crisis

https://www.marieclaire.co.uk/beauty/what-did-she-expect-the-sexism-and-classism-behind-the-uks-a...
2•bryanrasmussen•3m ago•1 comments

Ow are small recruiting agencies automating candidate screening?

1•Rutus•3m ago•0 comments

All the microbes you can't have

https://worksinprogress.co/issue/all-the-microbes-you-cant-have/
1•SamuraiLion•5m ago•0 comments

AMD Threadripper Halo Station 96-Cores, MI350P GPUs, 576GB GPU, 2TB CPU Memory

https://videocardz.com/newz/amd-threadripper-halo-station-packs-96-core-cpu-and-instinct-mi350p-g...
1•rbanffy•6m ago•0 comments

Show HN: Agent Sandboxes with GPUs from $0.20/hr

https://tama.computer/
2•Mernit•8m ago•0 comments

Show HN: Million Bricks – a 3D tower of one million bricks you can buy for $10

https://www.millionbrickshomepage.com
2•keslert•13m ago•1 comments

Show HN: MRDown – a Mac Markdown app that diffs what your AI just rewrote

https://github.com/MR-TABATA/MRDown
2•hitoshi1964•14m ago•1 comments

Are LLMs Becoming Commodities?

https://frontierai.substack.com/p/llms-are-becoming-commodities-de1
1•ltononro•14m ago•0 comments

Meta new layoff goal of 60% to AI after moving 30% engineers to labelers

https://blog.pragmaticengineer.com/the-pulse-meta-wanted-to-reduce-teams-by-60-because-of-ai/
5•ltononro•16m ago•0 comments

Crew, a multiplayer workspace for humans and AI agents to work together

https://github.com/JamelHammoud/crew
2•alihammoud21•17m ago•0 comments

Update on RISC-V Standards and Adoption at Hot Chips 2026 – ServeTheHome

https://www.servethehome.com/update-on-risc-v-standards-and-adoption-at-hot-chips-2026/
1•rbanffy•17m ago•0 comments

Running LLMs in the browser with three JavaScript

https://ben3d.ca/blog/running-llms-in-the-browser-with-threejs
1•ltononro•17m ago•0 comments

Show HN: Open-source ERP for small manufacturing shops

https://github.com/OlegUshakov-pl/CRM
1•OlegUshakov•18m ago•0 comments

Microsoft unveils Project Zenith, to run 30B+ parameters locally

https://www.theverge.com/news/990051/microsoft-project-zenith-windows-developers
1•utiiiD•19m ago•0 comments

LangBrain

https://github.com/youssouf994/LangBrain
1•youssouf994•19m ago•0 comments

iPhone USB reverse tethering on Windows

https://github.com/0xbaksa/iphone-usb-reverse-tethering-windows
1•0xbaksa•20m ago•0 comments

Show HN: What if AI did the prompting – and humans did the thinking?

https://www.antiagent.site
1•EnthusiastShiv•20m ago•0 comments

Google AI Mode shows same products 21.6% more expensive than traditional search

https://productrise.app/blog/google-ai-mode-prefers-more-expensive-products
1•DeepLogin•20m ago•0 comments

Citemark – Check if ChatGPT/Gemini/Claude mention your business

https://getcitemark.com/checker
1•jackkap•21m ago•0 comments

Adobe Announces Anil Chakravarthy to Become President and CEO

https://news.adobe.com/
1•mak8•24m ago•0 comments

Programming Z3

https://z3prover.github.io/papers/programmingz3.html
1•Bluestein•24m ago•0 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
3•moultano•24m ago•0 comments

Estonian defense minister resigns after procurement scandal

https://www.politico.eu/article/estonian-defense-minister-resigns-after-procurement-scandal/
3•sam_lowry_•26m ago•1 comments

Kernels, Margins, and Ensembles

https://stochastic.blog/kernels-margins-and-ensembles/
1•Anon84•26m ago•0 comments

Google Slides AI is laughably bad

https://theopenpresenter.com/blog/google-slides-ai-is-laughably-bad/
1•michaelsalim•28m ago•0 comments

Getting Agents to Tell on Themselves

https://blog.thinkst.com/2026/09/getting-agents-to-tell-on-themselves.html
2•mh_•28m ago•0 comments

Fidelity 2026 Q2 Retirement analysis

https://about.fidelity.com/data-and-insights/q2-2026-retirement-analysis
1•cebert•28m ago•0 comments

Psilocybin prevents chemo-induced peripheral neuropathy

https://www.science.org/doi/10.1126/science.aec6116
3•jodacola•30m ago•0 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/index.html
3•Re-Tails•31m ago•2 comments
Open in hackernews

An Enterprise-Level Retrieval-Augmented Generation System

https://comfyai.app/article/llm-applications/enterprise-level-rag-hands-on-practice-II
6•zljdanceholic•1y ago

Comments

zljdanceholic•1y ago
How can we search the wanted key information from 10,000+ pages of PDFs within 2.5 hours? For fact check, how do we implement it so that answers are backed by page-level references, minimizing hallucinations?

RAG-Challenge-2 is a great open-source project by Ilya Rice that ranked 1st at the Enterprise RAG Challenge, which has 4500+ lines of code for implementing a high-performing RAG system. It might seem overwhelming to newcomers who are just beginning to learn this technology. Therefore, to help you get started quickly—and to motivate myself to learn its ins and outs—I’ve created a complete tutorial on this.

We have a complete graph to explain its workflow where multiple tools are used: Docling for parsing PDFs, LangChain for chunking text, faiss for vectorization and similarity searching, and chatgpt for LLMs.

Besides, I also outline the codeflow, demonstrating the running logic involving multiple python files where starters can easily get lost. Different files are colored differently. The purpose of showing this is not letting you memorize all of these file relationships. It works better for you to check the source code yourself and use this as a reference if you find yourself lost in the code.

The original project of Ilya Rice design its RAG system for answering questions of annual reports from companies, so he only designed three types of question response format for that challenge: a name, a number, or a boolean. But to ask questions about technical stuff, we absolutely ask general questions like How does RoPE work? to know about some concepts and the like Therefore, I further modify the system logic to fit this need by customizing an AnswerWithRAGContextExplanationPrompt class and automatically matching the most related chapter and corresponding pages via searching through all faiss databases (only retrieve the top-1) The final performance is demonstrated below (not cherry-picked, only tested once).

- What's the steps to train a nanoGPT from scratch? The answer is:

Training nanoGPT from scratch involves several clearly defined steps. First, set up the environment by installing necessary libraries, using either Anaconda or Google Colab, and then download the dataset (e.g., tinyShakespeare). Next, tokenize the text into numerical representations and split the data into training and validation sets. Define the model architecture including token/positional embeddings, transformer blocks with multi-head self-attention and feed-forward networks, and layer normalization. Configure training hyperparameters and set up an optimizer (such as AdamW). Proceed with a training loop that performs forward passes, computes loss, backpropagates, and updates parameters, while periodically evaluating performance on both training and validation data. Finally, use the trained model to generate new text from a given context.

All code are provided on Colab and the tutorial is referenced here. Hope this helps!