I'm tired of my LLM bullshitting. So I fixed it
As a handsome local AI enjoyer™ you’ve probably noticed one of the big flaws with LLMs: It lies. Confidently. ALL THE TIME. I’m autistic and extremely allergic to vibes-based tooling, so … I built a thing. Maybe it’s useful to you too. The thing: llama-conductor llama-conductor is a router that sits between your frontend (eg: OWUI) & backend (llama.cpp + llama-swap). Local-first but it should talk to anything OpenAI-compatible if you point it there (note: experimental so YMMV). LC is a glass-box that makes the stack behave like a deterministic system, instead of a drunk telling a story about…
What it does
In the maker’s words, at launch
As a handsome local AI enjoyer™ you’ve probably noticed one of the big flaws with LLMs: It lies. Confidently. ALL THE TIME. I’m autistic and extremely allergic to vibes-based tooling, so … I built a thing. Maybe it’s useful to you too. The thing: llama-conductor llama-conductor is a router that sits between your frontend (eg: OWUI) & backend (llama.cpp + llama-swap). Local-first but it should talk to anything OpenAI-compatible if you point it there (note: experimental so YMMV). LC is a glass-box that makes the stack behave like a deterministic system, instead of a drunk telling a story about the fish that got away. TL;DR: “In God we trust. All others must bring data.” Three examples: 1. KB mechanics (markdown, JSON, checksums) You keep “knowledge” as dumb folders on disk. Drop docs (.txt, .md, .pdf`) in them. Then: >>attach <kb> - attaches a KB folder >>summ new - generates SUMM_.md files with SHA-256 provenance baked in + moves the original to a sub-folder Now, when you ask something like: > “yo, what did the Commodore C64 retail for in 1982?” ..it answers from the attached KBs only. If the fact isn’t there, it tells you - explicitly - instead of winging it. Eg: "The provided facts state the Commodore 64 launched at $595 and was reduced to $250, but do not specify a 1982 retail price. The Amiga’s pricing and timeline are also not detailed in the given facts. Missing information includes the exact 1982 retail price for Commodore’s product line and which specific model(s) were sold then." [Confidence: medium | Source: Mixed] No vibes. Just: here’s what’s in your docs, here’s what’s missing, don't GIGO yourself into stupid. Then, if you're happy with the summary, you can: >>move to vault 2. Mentats: proof-or-refusal mode (Vault-only) Mentats is the “deep think” pipeline against your curated sources. * no chat history * no filesystem KBs * no Vodka * Vault-only grounding (Qdrant) It runs a triple-pass (thinker → critic → thinker). It’s slow on purpose. You can audit it. And if the Vault has nothing relevant? It refuses and tells you to go pound sand: FINAL_ANSWER: The provided facts do not contain information about the Acorn computer or its 1995 sale price. Sources: Vault FACTS_USED: NONE [ZARDOZ HATH SPOKEN] Also yes, it writes a mentats_debug.log. Go look at it any time you want. The flow is basically: Attach KBs → SUMM → Move to Vault → Mentats. No mystery meat. No “trust me bro, embeddings.” 3. Vodka: deterministic memory on a potato budget Potato PCs have two classic problems: goldfish memory + context bloat that murders your VRAM. Vodka fixes both without extra model compute. * !! stores facts verbatim (JSON on disk) * ?? recalls them verbatim (TTL + touch limits so memory doesn’t become landfill) * CTC (Cut The Crap)* hard-caps context (last N messages + char cap) and creates a concatenated summary (not LLM) so you don’t get VRAM spikes after 400 messages So instead of: “Remember my server is 203.0.113.42” → “Got it!” → [100 msgs later] → “127.0.0.1” you get: !! my server is 203.0.113.42` ?? server ip → 203.0.113.42 (with TTL/touch metadata) And because context stays bounded: stable KV cache, stable speed, your potato PC stops crying. There’s more (a lot more) in the README, but I’ve already over-autism’ed this post. TL;DR: If you want your local LLM to shut up when it doesn’t know and show receipts when it does, come poke it: Primary (Codeberg) https://codeberg.org/BobbyLLM/llama-conductor Mirror (GitHub): https://github.com/BobbyLLM/llama-conductor PS: Sorry about the AI slop image. I can't draw for shit. PPS: A human with ASD wrote this using Notepad++. If it the formatting or language are weird, now you know why.
Does a similar job
all alternatives →- IBI built a free in-browser Llama 3 chatbot powered by WebGPU2024 · github.com · ▲547
I spent the last few days building out a nicer ChatGPT-like interface to use Mistral 7B and Llama 3 fully within a browser (no deps and installs). I’ve used the WebLLM project by MLC AI for a while to interact with LLMs in the browser when handling sensitive data but I found their UI quite lacking for serious use so I built a much better interface around WebLLM. I’ve been using it as a therapist and coach. And it’s wonderful knowing that my personal information never leaves my local computer. Should work on Desktop with Chrome or Edge. Other browsers are adding WebGPU support as well - see…
- L3Llama 3.2 Interpretability with Sparse Autoencoders2024 · github.com · ▲579
I spent a lot of time and money on this rather big side project of mine that attempts to replicate the mechanistic interpretability research on proprietary LLMs that was quite popular this year and produced great research papers by Anthropic [1], OpenAI [2] and Deepmind [3]. I am quite proud of this project and since I consider myself the target audience for HackerNews did I think that maybe some of you would appreciate this open research replication as well. Happy to answer any questions or face any feedback. Cheers [1]…

- ALAI-Less Hacker News2023 · save-buffer.github.io · ▲69
Lately I've felt exhausted due to the deluge of AI/GPT posts on hacker news, and have seen similar grumblings. I threw together this frontend that filters out anything with the phrases AI, LLM, GPT, or LLaMa for use until the hype dies down a bit. Before anyone asks, yes I did try to use ChatGPT to help, and while the code it provided was helpful, it needed some heavy bug-fixing. Edit: One other note I forgot to mention. The favicon is generated by Stable Diffusion, I asked it to generate an "Aritificial Intelligence Favicon", and then I added the red circle with line through it.
- ATA tool to benchmark LLM APIs (OpenAI, Claude, local/self-hosted)2025 · llmapitest.com · ▲55
I recently built a small open-source tool to benchmark different LLM API endpoints — including OpenAI, Claude, and self-hosted models (like llama.cpp). It runs a configurable number of test requests and reports two key metrics: • First-token latency (ms): How long it takes for the first token to appear • Output speed (tokens/sec): Overall output fluency Demo: https://llmapitest.com/ Code: https://github.com/qjr87/llm-api-test The goal is to provide a simple, visual, and reproducible way to evaluate performance across different LLM providers, including…
- IBI built an on-device LLM based chatbot for iPhones2023 · ▲20
I’ve been playing around with local LLMs for the past couple of months and decided to build something that can run on an iPhone. It’s a universal app built with SwiftUI and the excellent ggml library. The model is an SFT fine tuned and 4 bit quantised version of the RedPajama-INCITE-Chat-3B-v1 OSS LLM. It works reasonably well on recent-ish (~3 year old) iPhones, iPads and Macs. It was launched on the App Store yesterday[1] and Product Hunt today[2]. It seems to be reasonably ok at natural language interactions, but given its size, does pretty badly at coding and reasoning. Also, it…
More ai this month
the category →
I trained a 125M-parameter transformer to autocomplete piano performances in real time (~108 notes/sec on an iPhone 15). The idea is basically GitHub Copilot or Tabnine, except instead of prompting it with code, you prompt it by playing a few notes on a MIDI piano. The model then continues what you played, entirely on-device. The app is free if anyone wants to try it. Happy to answer questions about the model, training, Core ML, or the many things that didn't work.
AI · 17d ago · simedw.com
Astute▲585Automate your B2B brand going viral, with new media creators
AI · 19d ago · company-app.joinastute.com


Hey HN, Henry from Cactus here! We previously released Cactus Needle, a 14MB agentic LLM for tool call, device use, and structured extraction for phones, wearables, smart homes, small robots and microcontrollers. We got really great feedback here, and have now incorporated the suggestions to release Needle 2. The whole model is a single 14MB binary that runs a full session in 28MB of RAM; 45m parameters at 2bit compression. Needle hits 500 tokens/sec decode speed on a Raspberry Pi 5, sits between 400-1,500 tokens/sec on VR devices like Meta Quest 3S and Apple Vision Pro, and ranges…
AI · 27d ago · cactuscompute.com


Launched alongside, January 2026
the whole month →- IN
Hey HN! I wanted to share something I built over the last few weeks: isometric.nyc is a massive isometric pixel art map of NYC, built with nano banana and coding agents. I didn't write a single line of code. Of course no-code doesn't mean no-engineering. This project took a lot more manual labor than I'd hoped! I wrote a deep dive on the workflow and some thoughts about the future of AI coding and creativity: http://cannoneyed.com/projects/isometric-nyc
AI · Jan 2026 · cannoneyed.com




Automatic AI-powered code reviews the moment you open a PR
Dev tools · Jan 2026 · kilo.ai
