frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Google Pics is generally available starting today

https://workspace.google.com/products/pics/
1•Nazzareno•2m ago•0 comments

What's in Your Agent's Context? Context Privilege Escalation Attacks Against AI

https://arxiv.org/abs/2609.01222
1•sbulaev•3m ago•0 comments

Years of AI History

https://pyyan.com/timeline
1•sajithamma•6m ago•0 comments

BDH-CQ: In-Context Learning with Recurrent Latent Reasoning

https://arxiv.org/abs/2608.09888
2•mdp2021•7m ago•1 comments

AI plotted an interstellar journey to Alpha Centauri

https://www.technologyreview.com/2026/09/01/1143247/ai-interstellar-journey-alpha-centauri/
1•joozio•8m ago•0 comments

XLS: Accelerated HW Synthesis by Google for ASIC/FPGA

https://github.com/google/xls
1•paaloeye•12m ago•0 comments

Van Eck Phreaking

https://en.wikipedia.org/wiki/Van_Eck_phreaking
1•thunderbong•12m ago•0 comments

OpenAI: Spinning Up in Deep RL

https://spinningup.openai.com/en/latest/
1•tosh•13m ago•0 comments

Mapping global methane emissions from space with Deep Learning

https://research.google/blog/mapping-global-methane-emissions-from-space-with-deep-learning/
1•xhevahir•14m ago•0 comments

CleanShot 5.0 with Screen Recording

https://cleanshot.com/screen-recording
1•chillax•14m ago•0 comments

Syria was building a nuclear reactor under Assad, UN reports

https://apnews.com/article/iaea-report-syria-nuclear-bashar-assad-b941d7d11da6fb8912ae2bed0b34cec2
1•geox•19m ago•0 comments

Show HN: Structure from Attention

https://mostlyk.substack.com/p/structure-from-attention
1•mostlyk•21m ago•0 comments

Meta's Muse Voice Transcribe handles real-time speech

https://forgeeks.net/meta-muse-voice-transcribe-release/
2•ledoncool•23m ago•0 comments

Qwen3.8-Max

https://www.qwencloud.com/models/qwen3.8-max-0902
2•Bluestein•23m ago•2 comments

Cutting LLM inference costs by 36% with prompt caching

https://www.neradot.com/post/cutting-inference-cost-36-percent-with-prompt-caching
1•lizakatz•24m ago•0 comments

OpenVINO: AI Plugins for Audacity

https://github.com/intel/openvino-plugins-ai-audacity
1•marklit•24m ago•0 comments

Stewardship not ownership: AI and LLM-generated written English

https://link.springer.com/article/10.1007/s10993-026-09798-2
2•teleforce•25m ago•0 comments

Bicycle Robot (2020) [video]

https://www.youtube.com/watch?v=j6bNVqe_1xY
1•iamanatom•25m ago•0 comments

Emily Wilson to retranslate the Odyssey from scratch

https://www.theguardian.com/books/2026/sep/01/emily-wilson-to-retranslate-the-odyssey-from-scratc...
4•mdp2021•26m ago•0 comments

How Trump Plans to Steal the Midterm Elections, According to a Whistleblower

https://gizmodo.com/heres-how-trump-plans-to-steal-the-midterm-elections-according-to-a-whistlebl...
5•hochmartinez•29m ago•1 comments

ITA Controlled English (CE)

https://github.com/ce-store/ce-store
1•teleforce•31m ago•0 comments

Attempto project: Attempto Control English (ACE) and its tools

https://attempto.ifi.uzh.ch/site/
1•teleforce•33m ago•0 comments

Logica: Enhanced Datalog Compiled to SQL

https://logica-lang.github.io/
1•RebelPotato•33m ago•0 comments

Climate Trace Releases May 2026 Emissions Data

https://climatetrace.org/news/climate-trace-releases-may-2026-emissions-data
2•leonidasrup•34m ago•0 comments

Findings Report on the July 8th Telstra Outage [pdf]

https://www.telstra.com.au/content/dam/tcom/dynamic-media-projects/luke-campbell/TAP-Findings-for...
2•martyvis•34m ago•1 comments

Care for a Little More AI?

https://proofsandprompts.com/2026/08/30/care-for-a-little-more-ai/
2•rzk•40m ago•0 comments

Where the brain ends and the mind begins

https://www.youtube.com/watch?v=XklvcYMSvAU
1•dr_dshiv•41m ago•0 comments

Qwen3.8-Max just got upgraded

https://twitter.com/Alibaba_Qwen/status/2094968708288680276
2•mydreamof•42m ago•2 comments

Thousands of University of Sydney staff on strike over AI and job security

https://www.theguardian.com/australia-news/2026/sep/02/we-have-had-enough-thousands-of-staff-at-t...
4•hochmartinez•44m ago•0 comments

Making of Jonathan Blow's Newest Game, Part I: The Game Design Supercollider

https://www.orderofthesinkingstar.com/en/news/article/11582786
2•helloplanets•46m ago•0 comments
Open in hackernews

LLMs Are Great, but They're Not Everything

4•procha•1y ago
Three years after ChatGPT’s release, LLMs are in everything—demos, strategies, and visions of AGI. But from my observer’s perspective, the assumptions we’re making about what LLMs can do seem to be drifting from architectural reality.

LLMs are amazing at unstructured information—synthesizing, summarizing, reasoning loosely across large corpora. But they are not built for deterministic workflows or structured multi-step logic. And many of today’s most hyped AI use cases are sold exactly like that.

Architecture Matters

We often conflate different AI paradigms:

    LLMs (Transformers): Predict token sequences based on context. Great with language, poor with state, goal-tracking, or structured tool execution.

    Symbolic AI / State Machines: Rigid logic, excellent for workflows—bad at fuzziness or ambiguity.

    Reinforcement Learning (RL): Optimizes behavior over time via feedback, good for planning and adaptation, harder to scale and train.
Each of these has a domain. The confusion arises when we treat one as universally applicable. Right now, we’re pushing LLMs into business-critical automation roles where deterministic control matters—and they often struggle.

Agentic Frameworks: A Workaround, Not a Solution

Agentic frameworks have become popular: LLMs coordinating with other LLMs in roles like planner, executor, supervisor. But in many cases, this is just masking a core limitation: tool calling and orchestration are brittle. When a single agent struggles to choose correctly from 5 tools, giving 10 tools to 2 agents doesn’t solve the problem it just moves the bottleneck.

Supervising a growing number of agents becomes exponentially harder, especially without persistent memory or shared state. At some point, these setups feel less like robust systems and more like committee members hallucinating their way through vague job descriptions.

The Demo Trap

A lot of what gets shown in product demos—“AI agents booking travel, updating CRMs, diagnosing errors”—doesn’t hold up in production. Tools get misused, calls fail, edge cases break flows. The issue isn’t that LLMs are bad it’s that language prediction is not a process engine.

If even humans struggle to execute complex logic reliably, expecting LLMs to replace structured automation is not vision it’s optimism bias.

On the Silence of Those Who Know Better

What’s most puzzling is the silence of those who could say this clearly: the lab founders, the highly respected researchers, the already-rich executives. These are people who know that LLMs aren’t general agents. They have nothing to lose by telling the truth and everything to gain by being remembered as honest stewards.

Instead, they mostly play along. The AGI narrative rolls forward. Caution is reframed as doubt. Realistic planning becomes an obstacle to growth.

I get it, markets, momentum, investor expectations. But still: it’s hard not to feel that something more ethical and lasting is being passed over in favor of short-term shine.

A Final Thought

I might be wrong—but it’s hard to ignore the widening gap between what LLMs are and what C-level execs and investors want them to be. Engineering teams are under pressure to deliver the Hollywood dream, but that dream often doesn’t materialize. Meanwhile, sunk costs pile up, and the clock keeps ticking. This isn’t pessimism it’s recognizing that hype has gravity, and reality has limits. I’d love to be proven wrong and happily jump on the beautiful AI hype train if it ever truly arrives.

Comments

designorbit•1y ago
Love this perspective. You nailed the core issue: LLMs ≠ process engines. And agentic frameworks stacking roles often end up masking fragility instead of fixing it.

One thing I’ve been exploring is this middle ground—what if we stop treating LLMs as process executors, and instead make them contextual participants powered by structured, external memory + state layers?

I’m building Recallio as a plug-and-play memory API exactly for this gap: letting agents/apps access persistent, scoped memory without duct-taping vector DBs and custom orchestration every time.

Totally agree the dream won’t materialize through token prediction alone—but maybe it does if we reconnect LLMs with better state + memory infra.

Have you seen teams blending external memory/state successfully in production? Or are most still trapped inside the prompt+vector loop?

dpao001•1y ago
What is your opinion on Manus. Is it closing in on AGI or is it as you suggest a sticking plaster waiting to break?