frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Generative AI Using Linuxulator and EGPU on FreeBSD

https://www.tumfatig.net/2026/generative-ai-using-linuxulator-and-egpu-on-freebsd/
1•turtleyacht•1m ago•0 comments

Indus-SDE: A Language Model for Scientific Content Curation and Discovery

1•sudobear•1m ago•0 comments

Sean Carroll explains the biggest ideas in the universe – Full Interview [video]

https://www.youtube.com/watch?v=_TBNJyztai0
1•binyu•1m ago•0 comments

A $537 Local LLM Machine (2025)

https://blog.lewman.com/a-537-local-llm-machine.html
2•turtleyacht•2m ago•0 comments

Synapse – Daily Word Game

https://synapse.akshayr.xyz/
1•barbierocks•3m ago•1 comments

Russia trafficking foreigners to fight in Ukraine, Amnesty says

https://www.courthousenews.com/russia-trafficking-foreigners-to-fight-in-ukraine-amnesty-says/
1•MilnerRoute•4m ago•0 comments

The Confused Engineer

https://thebsq.com/the-confused-engineer/
1•ahofma•5m ago•1 comments

M. Williams, OpenAI: Human extinction in the next few years seems likely

https://xcancel.com/antibot/captcha
2•doener•6m ago•2 comments

Show HN: PRBar see your open GitHub PR count in macOS menu bar

https://github.com/sburl/prBar
1•sburl•7m ago•1 comments

The Chasm: The Shape of Unfinished AI Codebases

https://jimmyhmiller.com/shape-of-unfinished-ai-codebases
1•gmays•9m ago•0 comments

AI researchers leave Anthropic and Google: 'There are no adults in the room'

https://www.nbcnews.com/tech/security/two-ai-researchers-leave-anthropic-google-safety-concerns-r...
1•doener•10m ago•0 comments

Stop externalizing the cost of your AI use to me

https://thelastsoftwareengineer.substack.com/p/stop-externalizing-the-cost-of-your
2•azhenley•12m ago•0 comments

AI Is Not Going to Kill My Love of Math

https://chillphysicsenjoyer.substack.com/p/ai-is-not-going-to-kill-my-love-of
2•crescit_eundo•13m ago•0 comments

NATO allies foil Russian subsea cable sabotage plot

https://www.reuters.com/world/europe/nato-allies-foil-russian-subsea-cable-sabotage-plot-2026-09-10/
2•doener•17m ago•0 comments

Xapien raises $56M Series B for AI background checks and due diligence

https://axios.com/pro/all-deals/2026/09/10/due-diligence-ai-xapien-56-million
1•utiiiD•18m ago•1 comments

Biff 2.0 Is Released

https://biffweb.com/p/biff2-released/
2•TheWiggles•18m ago•0 comments

The Birth of HaaS

https://www.vtrivedy.com/posts/claude-code-sdk-haas-harness-as-a-service/
1•iacguy•18m ago•0 comments

More Anthropic researchers warn of AI's perils as Musk terms fears a 'psyop'

https://www.theguardian.com/technology/2026/sep/10/anthropic-researchers-warn-ai-musk
2•lf88•21m ago•1 comments

Julia 1.13 Highlights

https://julialang.org/blog/2026/09/julia-1.13-highlights/
3•postflopclarity•22m ago•0 comments

The Rise and Fall of Crime

https://nicholasdecker.substack.com/p/the-rise-and-fall-of-crime
1•barry-cotter•22m ago•0 comments

Thelio Mira AI Linux Workstation: 192 GB GPU Memory

https://system76.com/workstations/thelio-mira-ai
4•jonifico•23m ago•0 comments

Satellite images before and after Nepal's devastating floods

https://artifactbin.dev/@vivek/7KRGdj-nepal-floods-before-and-after
1•nuwandavek•25m ago•0 comments

DreamLayer: OpenRouter for Image Models

https://dreamlayer.io/
1•mack77•25m ago•0 comments

Show HN: Papiers.ai, a new workspace for reading and research

https://papiers.ai/
1•smnair•26m ago•0 comments

The Cost of Cognitive Debt

https://ljtn.github.io/epiq/blog/cost-of-cognitive-debt.html
2•ionetan•29m ago•0 comments

Chonk Finder; cats as trading cards, and a re-ID problem

https://www.chonkfinder.app
1•jahmad077•31m ago•0 comments

The Elephant in the Context Window

https://twitter.com/ashwingop/status/2098000416491602360
1•porridgeraisin•32m ago•0 comments

California Tesla drivers could get $350 from class action settlement

https://ktla.com/news/california/tesla-driver-settlement-california-superchargers/
4•Bender•33m ago•0 comments

Hiring for Agentic Era?

2•Germinate1107•34m ago•0 comments

LinkedIn beats "BrowserGate" lawsuits over scanning users' Chrome extensions

https://arstechnica.com/tech-policy/2026/09/linkedin-beats-browsergate-lawsuits-over-scanning-use...
2•Bender•36m ago•1 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!