frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

My Thoughts on Agentic Coding

https://vucenovic.dev/blog/agentic-coding-thoughts/
1•avucenovic•1m ago•0 comments

Run frontier LLMs on sovereign EU infrastructure

https://corti.ai/models
1•guillego•4m ago•0 comments

Arrayref v0.3.10 and v0.3.11 compromised on crates.io

1•stevefan1999•5m ago•0 comments

Show HN: Ollama served my 40k-context model at 4k, silently

https://github.com/Bigbonus/ollama-context-window-check
1•satoshiakiyama•7m ago•0 comments

Nutrition standards for AI-designed foods across borders

https://www.worldsolve.org/?view=problem&id=5047
1•pep-6067•10m ago•0 comments

"everyone I know is canceling software and rebuilding internally"

https://twitter.com/frantzfries/status/2090114938723344644
1•nreece•13m ago•0 comments

Show HN: Editor UI toolkit for building AI writing workflows

https://imperavi.com/redactor/ai-assistant/
1•lessio•13m ago•0 comments

The Future of Computing: Logic or Biology (2003) [pdf]

https://www.microsoft.com/en-us/research/wp-content/uploads/2016/12/The-Future-of-Computing.pdf
1•nz•17m ago•0 comments

Show HN: Worldarchitect.ai – AI TTRPG GM with rules and campaign sharing

https://worldarchitect.ai/shared/t3hKKtzBKCKlvg5vCnlW_2hxwH3UmzjFq56yi6hQN2Q
1•jleechan2015•19m ago•2 comments

UnlimitedNIM – Proxy that makes Nvidia Nim's 40 RPM feel unlimited

https://github.com/shivnathtathe/UnlimitedNIM
1•shivnathtathe•19m ago•0 comments

Founder of Chinese property giant Evergrande sentenced to life in prison

https://www.bbc.com/news/articles/cd0x9mjjmgjo
4•ZeljkoS•21m ago•0 comments

A proposed browser standard for provider-agnostic AI inference

https://github.com/SamSamskies/inference-provider-api
1•fiatjaf•22m ago•0 comments

Show HN: A Company Ethics Search Engine for 5500 Companies

https://mashinii.com
1•smashini•24m ago•1 comments

Two ways to make Opus 5 concise

https://hjerpbakk.com/blog/2026/08/20/making-opus-5-concise
2•Sankra•26m ago•1 comments

Environment Embodied Intelligence

https://camerongordon0.substack.com/p/environment-embodied-intelligence
1•iciac•27m ago•0 comments

Willow and poplar trees are making air quality in cities worse by releasing VOCs

https://www.nature.com/articles/d41586-026-02586-2
1•giuliomagnifico•28m ago•0 comments

At Beijing AI-themed bar, DeepSeek tokens come with the pints

https://www.reuters.com/world/asia-pacific/beijing-ai-themed-bar-deepseek-tokens-come-with-pints-...
1•earthpyy•31m ago•0 comments

Raycast 2.0 Released

https://www.raycast.com/new
3•jbverschoor•34m ago•0 comments

Oh My OpenCode Slim

https://fabiobiffi.com/2026/oh-my-opencode-slim-free-multi-agent-programming-with-opencode-big-pi...
1•fabiobiffi•35m ago•0 comments

Raycast 2.0 Released

https://www.raycast.com/index
1•jbverschoor•36m ago•1 comments

World Solve: A citable list of 4,094 world problems for startups and researchers

https://www.worldsolve.org/
1•pep-6067•36m ago•0 comments

The ST-412 10MB full height 5.25" HDD

https://www.redhill.net.au/d/1.php
1•walrus01•38m ago•1 comments

Meditation isn't just one thing

https://nimishg.substack.com/p/meditation-isnt-just-one-thing
2•i_dont_know_•39m ago•1 comments

AI Coding Agents Adoption Trends

https://blog.jetbrains.com/research/2026/08/ai-coding-agent-adoption-2026/
1•nreece•43m ago•0 comments

Moderna pins hopes on mRNA 'game-changer' for cancer vaccines

https://www.ft.com/content/cd52173f-5863-4996-93b2-c4adb81ad210
1•TooSmugToFail•44m ago•0 comments

Fungi found on coconut husks can decompose plastic, sunscreen

https://www.hawaii.edu/news/2026/05/11/coconut-fungi-decompose-plastic/
5•thunderbong•49m ago•0 comments

Spotify Soloist, official terminal client for headless and DIY setups

https://developer.spotify.com/blog/2026-08-13-introducing-spotify-soloist
2•mdrzn•50m ago•0 comments

I've built an iOS Lockscreen Calendar inspired by an old jailbreak Cydia tweak

https://apps.apple.com/de/app/lockcal/id6794340782
1•daymir•51m ago•1 comments

Offline RAG on iOS with Spatial Integration

1•CartoType•55m ago•0 comments

How does a USB keyboard work? (2021) [video]

https://www.youtube.com/watch?v=wdgULBpRoXk
1•nesk_•56m ago•0 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!