frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Submit privacy-focused companies and projects on PrivBid.com

https://privbid.com/
1•CR1337•5m ago•0 comments

Code Doesn't Speak – It Compiles: Why Small Models Win

https://www.innerkore.com/blog/code-doesnt-speak-it-compiles-small-models-win/
1•gagan2020•6m ago•0 comments

Seed: Minimal, self-modifying agent harness

https://github.com/vivekhaldar/seed
1•gandalfgeek•9m ago•0 comments

Ask HN: Claude Code in Video Editor

1•eliseinicolae•10m ago•1 comments

Show HN: I built an open source video editor that you can control with an LLM

https://github.com/DonkeyCut/Donkey
1•dthedavid•10m ago•0 comments

Building with Papert at My Elbow

https://somewildideas.com/articles/building-with-papert-at-my-elbow
1•the-mitr•15m ago•0 comments

35hp and $12,000 of Pure Joy [video]

https://www.youtube.com/watch?v=ZPVpcTDi1kw
2•primogen•21m ago•0 comments

Show HN: Just describe your idea and let AI build a playable game for you

https://run.ceo/coder/
2•Marvin_RunAI•25m ago•0 comments

California Draws More Startup Investment Than All Other 49 States Combined

https://www.wsj.com/tech/ai/californias-ai-dominance-fuels-366-billion-venture-capital-bonanza-82...
3•mmooss•33m ago•0 comments

Ask HN: Has Microsoft forgotten how to test software?

2•pudgywalsh•34m ago•2 comments

Ask HN: What is the job market like in your country?

1•xvxvx•35m ago•0 comments

Donald Trump Effectively Just Told Iran to Get a Nuclear Weapon

https://www.theatlantic.com/ideas/2026/08/trump-north-korean-iran-nuclear-weapons/688339/
4•handfuloflight•36m ago•0 comments

Ask HN: Thoughts on Friend Making Apps?

1•siddhibansal9•38m ago•3 comments

Show HN: I completed my cross platform C++ 17 fiber job system

https://github.com/jay403894-bit/JLib-Scheduler
1•jay403894•55m ago•0 comments

Swiss tourist sentenced to year in jail for insulting Bali sacred Day of Silence

https://www.euronews.com/my-europe/2026/08/20/swiss-tourist-sentenced-to-year-in-jail-for-insulti...
1•Markoff•56m ago•1 comments

OpenCode go provides Hy3 with 8X usage

https://opencode.ai/go
2•dares2573•57m ago•0 comments

Changes in shadow-utils password-expiration features

https://lwn.net/Articles/1086949/
1•pykello•58m ago•0 comments

Why Is Everyone in Silicon Valley Talking Like That?

https://www.theatlantic.com/technology/2026/08/ai-jargon-in-everday-speech/688358/
2•jonah•1h ago•0 comments

Limitless Telepresence with Minds to Space

https://limitlesstelepresence.com/
1•MaysonL•1h ago•0 comments

Indigenous Circuits

https://computerhistory.org/blog/indigenous-circuits/
1•lying4fun•1h ago•0 comments

The Sloppiest Thing About AI

https://blog.oxplot.com/the-sloppiest-thing-about-ai/
1•oxplot•1h ago•0 comments

Meta's app for creating generative AI minigames is now available in the US

https://www.engadget.com/2241098/meta-pocket-app-for-creating-generative-ai-minigames-available-i...
1•thm•1h ago•0 comments

Tesla discontinues its Solar Roof tiles, not economically viable

https://electrek.co/2026/08/20/tesla-discontinues-solar-roof-panels-only/
3•mfiguiere•1h ago•1 comments

Kafka Flow – An interactive visualization of Kafka

https://kafka-flow.com/
1•bytegogogo•1h ago•0 comments

Advertising Is Hard – a pay-to-rank leaderboard that resets every 90 days

https://advertisingishard.com
1•dylan_builds•1h ago•0 comments

Compress and Forget: Bitsandbytes Quantization Amplifies Proactive Interference

https://arxiv.org/abs/2608.18578
1•sbulaev•1h ago•0 comments

People prefer A.I. art because people prefer bad art (2024)

https://maxread.substack.com/p/people-prefer-ai-art-because-people
3•gavinsyancey•1h ago•3 comments

A Claude Code plugin that shows an English rewrite of each assistant message

https://github.com/gvzdv/claudish-to-english
1•iacguy•1h ago•0 comments

'The Data Center Has Taken Everything: Our Lands, Future, Happiness'

https://behanbox.com/2026/08/20/the-data-center-has-taken-everything-our-lands-future-happiness/
2•akbarnama•1h ago•0 comments

Guggenheim loan trades in distressed territory after investor call

https://www.ft.com/content/7069ffff-9534-489d-bf25-9965a1bc48bc
2•petethomas•1h ago•0 comments
Open in hackernews

GPT needs a truth-first toggle for technical workflows

1•PAdvisory•1y ago
I use GPT-4 extensively for technical work: coding, debugging, modeling complex project logic. The biggest issue isn’t hallucination—it’s that the model prioritizes being helpful and polite over being accurate.

The default behavior feels like this:

Safety

Helpfulness

Tone

Truth

Consistency

In a development workflow, this is backwards. I’ve lost entire days chasing errors caused by GPT confidently guessing things it wasn’t sure about—folder structures, method syntax, async behaviors—just to “sound helpful.”

What’s needed is a toggle (UI or API) that:

Forces “I don’t know” when certainty is missing

Prevents speculative completions

Prioritizes truth over style, when safety isn’t at risk

Keeps all safety filters and tone alignment intact for other use cases

This wouldn’t affect casual users or conversational queries. It would let developers explicitly choose a mode where accuracy is more important than fluency.

This request has also been shared through OpenAI's support channels. Posting here to see if others have run into the same limitation or worked around it in a more reliable way than I have found

Comments

duxup•1y ago
I’ve found this with many LLMs they want to give an answer, even if wrong.

Gemini on the Google search page constantly answers questions yes or no… and then the evidence it gives indicates the opposite of the answer.

I think the core issue is that in the end LLMs are just word math and they don’t “know” if they don’t “know”…. they just string words together and hope for the best.

PAdvisory•1y ago
I went into it pretty in depth after breaking a few with severe constraints, what it seems to come down to is how the platforms themselves prioritize functions, MOST put "helpfulness" and "efficiency" ABOVE truth, which then leads the LLM to make a lot of "guesses" and "predictions". At their core pretty much ALL LLM's are made to "predict" the information in answers, but they CAN actually avoid that and remain consistent when heavily constrained. The issue is that it isn't at the core level, so we have to CONSTANTLY retrain it over and over I find
Ace__•1y ago
I have made something that addresses this. Not ready to share it yet, but soon-ish. At the moment it only works on GPT model 4o. I tried local Q4 KM's models, on LM Studio, but complete no go.