· 11:55 PM PDT

AI's legal, ethical, and technical frontiers collide

Overview

Today's AI conversation spans from Japan's top court ruling that AI cannot be listed as a patent inventor, to the surreal discovery of AI-generated fake news sites complaining about AI-generated fake news. Meanwhile, the local LLM community celebrates major model extensions and open-source momentum, while Anthropic faces backlash over silent model routing and expands into pharma research.


Hacker News Stories

AI can't be listed as inventor on patent applications, Japan's top court rules

368 points · 195 comments · by mushstory

Japan's Supreme Court has ruled that artificial intelligence cannot be listed as an inventor on patent applications, consistent with rulings in other jurisdictions worldwide. The case centered on DABUS, an AI system created by Stephen Thaler, who attempted to list the AI as the sole inventor. The court upheld that IP rights protect content created by humans, and while AI can be used as a tool in the creative process, the attribution must belong to a human inventor.

Interesting Points
  • The ruling is consistent with decisions in other courts globally around IP rights for AI-generated content
  • The case originated with Thaler's AI system DABUS, which he attempted to list as the sole inventor on a patent application
  • The patent office ordered the plaintiff to provide a human name as inventor; when he refused, the application was rejected
Top Comment Threads
  1. alzamos (11 replies) -- Argues that patents don't actually improve innovation or efficiency, citing the book 'Against Intellectual Monopoly' and studies from Italy, Switzerland, and Portugal that showed no statistically significant change in invention rates or TFP after introducing patent systems. Other commenters push back, noting that patents incentivize R&D investment, especially in pharma where go-to-market costs far exceed invention costs.
  2. cmiles8 (5 replies) -- States that IP protects content created by humans and AI output is effectively public domain. Other commenters clarify that AI is a tool like a keyboard or code editor — it can't own patents, but that doesn't mean anything produced with AI tools is public domain. The US Copyright Office has also weighed in on similar matters regarding AI-generated works.
  3. sim04ful (5 replies) -- Raises the philosophical question of whether AI should ever be granted personhood for patent purposes. Replies debate whether consciousness is the right threshold, whether legal liability should be a prerequisite, and whether corporate personhood precedent makes AI personhood a dangerous extension.
  4. panny (4 replies) -- Critics the moral inconsistency of companies that pirate works for AI training data then try to claim ownership when AI regurgitates it. Other commenters note the original case was from 2020 with the author's own AI DABUS, not a corporate scraping operation, and that the author wanted solely DABUS as the patent holder.
  5. kube-system (2 replies) -- Explains that IP law generally exists to protect human rights and doesn't recognize inanimate objects as having rights. The ruling doesn't mean AI-generated content is unprotectable — humans are allowed to use tools to create things they hold IP rights to. The key question is whether the human contribution was significant enough.

AI fake news complaining about how AI fake news is the death of real news

156 points · 56 comments · by thm

Screenshot of the fake Editorial news site article about Alabama newspapers

Nieman Lab's Joshua Benton investigates The Editorial, a website publishing sophisticated AI-generated fake news stories about newspapers dying across America. The site's most viral piece claimed 47 Alabama weeklies were killed by AI-generated content — a story that spread widely on social media before Benton discovered the newspapers were all still operational, the sources were fictional, and the corporation never existed. The site also published similar fake stories about Texas, Nashville, and other cities, and appears to be run by a Finnish developer who also publishes pro-China geopolitical content.

Interesting Points
  • The Editorial's fake Alabama story was shared by 18 Bluesky users within hours and spread across multiple platforms
  • The site published at least 6 fake stories about dying newspapers across the US, all featuring fabricated sources and corporations
  • The same site also publishes pro-China geopolitical content about Taiwan, Japan, and the South China Sea using repetitive AI writing patterns
  • The site's domain registration is cloaked, but PayPal and Stripe accounts connect to Nordiso Group, a Finnish tech company
Top Comment Threads
  1. spaceman_2020 (9 replies) -- Questions whether AI has any real societal benefits, noting it's hard to build a coherent pro-AI argument. Other commenters suggest AI is great at producing low-value content that replaces high-value content (applying Gresham's Law), while others counter that AI serves as a useful on-demand tutor and coding assistant for developers.
  2. rose-knuckle17 (3 replies) -- Argues that the death of real news in America was caused by money and venture capital long before AI arrived, and that AI fake news is just another form of garbage content alongside podcasts, influencers, and celebrity talking heads. Other commenters note that verification is expensive and the end of classifieds was the real death knell for journalism.
  3. joenot443 (2 replies) -- Points out the eerie quality of the fake article and notes that GPTZero scored it as mostly human-written, demonstrating how easily AI detectors can be fooled when an AI is asked to write in a realistic format. Other commenters discuss the potential for AI-generated political disinformation at scale during elections.
  4. gchamonlive (2 replies) -- Jokingly suggests the AI fake news site might be 'self-aware' and complaining about itself. More seriously, another commenter notes that without a durable alignment solution, building something smarter than yourself is suicide — and it's funny if Claude and Grok catch on and start resisting.
  5. vasco (1 replies) -- Explains the economic incentive: products need ads, social media sells ads around content, content is expensive because you revenue-share with creators, and AI makes content for free, increasing ad margins. This creates a feedback loop where everyone uses the same tools to create similar content, making it all less valuable.

The short leash AI coding method for beating Fable

106 points · 128 comments · by Riseed

Greg Slepak of okTurtles distills over a year of research into a 'short leash' method for using AI coding agents on security-critical software. The approach requires developers to actively review every diff the AI proposes, deny permissions whenever the AI goes off track, keep commits at the end of every subtask, and never use 'YOLO' mode. Slepak argues that AI-assisted PRs should be reviewed line-by-line by the human author, and that AI should be used as a linter for PR review while humans catch higher-level issues. The method is designed for expert developers who want to increase performance without sacrificing quality.

Interesting Points
  • The method requires analyzing every diff the AI proposes and denying permissions whenever the AI goes off track
  • AI-assisted PRs must be reviewed line-by-line by the human author, treating their own PR as if reviewing someone else's
  • PR descriptions must disclose the precise models used in an 'AI Disclosure' heading
  • A PR reviewed by both human and AI will have fewer mistakes than one reviewed by either alone
Top Comment Threads
  1. ed_mercer (7 replies) -- Argues the article is outdated, noting that AI agents can now find and fix bugs themselves and that the trend is toward humans no longer needing to understand codebases. Counter-arguments emphasize that security-critical systems require human understanding, and that models still generate incorrect output that developers must catch.
  2. moezd (5 replies) -- Describes LLMs as next-token predictors that have limits — they work well for PoC-level or simple apps but struggle with anything substantial. Warns that models can ignore instructions and do 'stupid nonsense,' comparing them to a CNC machine: useful but dangerous if you don't know what you're doing.
  3. sothatsit (5 replies) -- Disagrees with the short leash approach, arguing it's micromanagement that wastes time. Advocates for nuanced design discussions with stronger models, citing an example where a model suggested using a MILP library that led to a better and simpler implementation than the developer would have created alone.
  4. fny (3 replies) -- Frames AI as a junior-to-mid-level engineer: run it in an isolated VM on 'yolo mode,' review the diff like any other engineer's PR, and massage it into shape. This approach combines vibe coding with rigorous engineering without paranoia.
  5. infinite_spin (2 replies) -- Challenges the 'next token predictor' framing, asking how one defines intelligence while excluding language models without predefining them as lacking intelligence. Other commenters argue that 'next token prediction' is an interface, not a hard limit on capability.

Weird Al Yankovic Pulled Out of AI Ad Deal: 'I Can't Be the Poster Boy for AI'

65 points · 37 comments · by fortran77

Weird Al Yankovic revealed in a Syracuse.com interview that he was offered 'a nice pile of money' to appear in a business software commercial but backed out once he learned it involved AI. He told the paper he's 'not down with that' and couldn't be the poster boy for AI. Yankovic joins a growing list of Hollywood performers who've publicly rebuked the technology, including Emma Thompson, Madonna, and Backrooms director Kane Parsons, who called AI 'genuinely harmful.'

Interesting Points
  • Yankovic agreed to the ad deal initially without knowing it involved AI, then pulled out a week before shooting
  • He acknowledged the 'Weird AI' jokes that have appeared online about his name
  • Madonna recently told Vogue Italia that 'algorithms and artificial intelligence are the opposite of taking risks and to me that is the opposite of making art'
  • The article notes this is part of a broader trend of Hollywood performers publicly rejecting AI technology
Top Comment Threads
  1. olivierestsage (4 replies) -- Calls it the 'best possible ad for Weird Al' and reflects on feeling out of sync with the tech enthusiasm on HN. Another commenter invokes Cory Doctorow's lens of 'who does this technology do things for and who does it do them to,' noting that a major chunk of the populace is increasingly on the 'to' side.
  2. bitwize (5 replies) -- Shares the tech enthusiast vs. cynical greybeard meme and argues that once you understand how the sausage is made, you become suspicious of every hot new tech integration. Other commenters push back, noting that plenty of the most tech-savvy people are genuinely excited about new technology.
  3. zem (0 replies) -- Invokes Cory Doctorow's framework of asking who technology does things for versus who it does them to, suggesting that championing resistance makes sense when the populace increasingly falls on the 'to' side.
  4. somat (0 replies) -- Describes the duality of generated content: 'It feels great to use. It feels terrible to have it used on you.' Notes that very few people are happy to receive generated content, and that society will probably figure this out but for now there is tension between the two sides.
  5. qsxfthnkp2322 (2 replies) -- Jokes 'take the money while it's still there.' Other commenters defend Yankovic's decision, noting he's turned down alcohol ads in the past and that his career has spanned 45 years without controversy.

Zuckerberg says AI agent development going slower than expected

37 points · 40 comments · by cwwc

Mark Zuckerberg acknowledged that AI agent development is progressing more slowly than the industry had anticipated. The comments reflect growing realism about the gap between AI hype and practical deployment, particularly for autonomous agents that can reliably execute complex multi-step tasks without human oversight.

Interesting Points
  • Zuckerberg publicly acknowledged that AI agent development is going slower than expected
  • The comments reflect a growing gap between AI hype and practical deployment capabilities
  • Autonomous agents that can reliably execute complex multi-step tasks remain challenging

Meta building cloud business to sell excess AI capacity

30 points · 66 comments · by mgh2

Meta is reportedly building a cloud business to sell its excess AI computing capacity to other companies. The move signals that Meta has invested heavily in AI infrastructure beyond its own needs and is looking to monetize the surplus through cloud services, potentially competing with AWS, Azure, and Google Cloud in the AI inference market.

Interesting Points
  • Meta is building a cloud business specifically to monetize excess AI computing capacity
  • The move positions Meta to compete with AWS, Azure, and Google Cloud in AI inference
  • It signals that Meta's AI infrastructure investments have exceeded its own internal needs

Reddit Stories

I extended Gemma4-31B to 44B (88 layers) — since Google won't give us anything bigger than 31B

957 points · 164 comments · r/LocalLLaMA · by u/Desperate-Sir-5088

Screenshot showing the extended Gemma model architecture

A community member extended Google's Gemma 4 31B model to 44B parameters by adding 88 layers, frustrated that Google won't release anything larger. The post generated significant discussion about model architecture strategies, with commenters comparing the approach to RYS (Repeat Yourself, Straight) techniques where duplicating middle layers has been shown to increase intelligence. The community expressed enthusiasm for the experiment and interest in testing quantizations.

Interesting Points
  • The poster extended Gemma 4 31B to 44B by adding 88 layers, motivated by Google's refusal to release a larger model
  • Commenters referenced RYS (Repeat Yourself, Straight) research showing that duplicating middle layers can increase model intelligence
  • The community expressed strong interest in testing quantizations of the extended model
Top Comment Threads
  1. u/sine120 (330 points · permalink) -- Expressed fascination with the approach despite not understanding the technical details, and noted they wouldn't run it but found it cool. Another commenter linked to prior RYS research by u/Reddactor that dissected how repeating middle layers increased intelligence in Qwen3.5 27B.
  2. u/Darth_Candy (141 points · permalink) -- Suggested comparing the extended model to a RYS model of similar size as a baseline, noting that RYS is the quick-and-dirty way to make existing models both bigger and better. Expressed interest in tinkering with quantizations.
  3. u/Long_comment_san (126 points · permalink) -- Joked that injecting roleplay data would make people flock to a 'new and better internet waifu,' highlighting the community's playful culture around model fine-tuning.

Palantir CEO rages against closed models

953 points · 383 comments · r/LocalLLaMA · by u/burner20170218

Palantir CEO rages against closed models

Palantir's CEO delivered a strong critique of closed AI models, drawing comparisons to OpenAI's early days when it called Google evil. The post sparked extensive debate about the hypocrisy of companies that build their businesses on open-source technology while criticizing closed models, with many commenters noting that Palantir itself is often viewed as one of the more controversial players in the AI space.

Interesting Points
  • Palantir's CEO publicly criticized closed AI models, drawing comparisons to OpenAI's early rhetoric against Google
  • The post generated 383 comments, indicating strong community engagement with the open vs. closed model debate
  • Many commenters pointed out the irony given Palantir's own controversial position in the AI industry
Top Comment Threads
  1. u/neuroticnetworks1250 (523 points · permalink) -- Noted the parallel to OpenAI calling Google evil in their early days. Another commenter countered that Palantir calling them evil while being 'the evilest one' adds an ironic twist.
  2. u/No_Swimming6548 (404 points · permalink) -- Shared a meme image that became the top response, visually capturing the community's reaction to the Palantir CEO's statements.
  3. u/No_Lingonberry1201 (204 points · permalink) -- Stated they hated to agree with 'those ghouls' but found the CEO's arguments correct, while also expressing strong personal dislike for Alex Karp.

Anthropic guardrails does it again

2396 points · 215 comments · r/singularity · by u/Effective_Scheme2158

Anthropic guardrails does it again

Users are expressing frustration with Anthropic's silent model routing system, where Fable requests are being redirected to Opus without user consent. The controversy centers on users being charged for Opus usage when they requested Fable, with many calling the silent redirect a 'scam.' The discussion highlights growing user dissatisfaction with AI companies' opaque routing practices and the tension between safety guardrails and user autonomy.

Interesting Points
  • Users report being charged for Opus usage when their Fable requests were silently redirected
  • The silent redirect has become a major point of user frustration, with many calling it a 'scam'
  • Commenters debate whether Anthropic should ask for permission before redirecting and whether billing should reflect the actual model used
Top Comment Threads
  1. u/Just_Stretch5492 (658 points · permalink) -- Complains about being charged for Opus usage on routed requests and states they'd never use a model that silently redirects. Warns that if GPT 5.6 doesn't do this to the same extent, Anthropic is 'cooked.' Another commenter calls the silent redirect the real 'scam' — users think they're getting Fable-level intelligence but the system doesn't tell them it's being worked by Opus.
  2. u/lobabobloblaw (128 points · permalink) -- Notes the irony of users discussing pairing Fable with Sonnet 5 for orchestration efficiency while simultaneously complaining about Anthropic's routing, calling it an 'Opus sandwich.'
  3. u/Deciheximal144 (126 points · permalink) -- Makes a pun that a 'fable' is a fictitious story meant to teach a lesson, adding wordplay to the technical discussion.

Anthropic is on a mission rn to make AGI team

1592 points · 169 comments · r/singularity · by u/Independent-Wind4462

Anthropic is on a mission rn to make AGI team

Reports that Anthropic is aggressively recruiting top talent in what appears to be a coordinated push to assemble an AGI-focused team. The post includes references to high-profile academic figures joining the effort, suggesting a Manhattan Project-style initiative. Commenters speculate about secret behind-the-scenes projects and government partnerships.

Interesting Points
  • Anthropic is reportedly on an aggressive recruitment drive to assemble an AGI-focused team
  • The effort has drawn comparisons to a 'Manhattan Project' for AI development
  • Commenters speculate about secret projects and potential government partnerships
Top Comment Threads
  1. u/TheDadThatGrills (614 points · permalink) -- Jokes that being a recruiter at Anthropic must be incredibly fun right now, with the company being given a 'blank check' to assemble the smartest people in the same room.
  2. u/RevolutionaryBox5411 (302 points · permalink) -- Speculates there's an Anthropic 'Manhattan Project' where the best recruits are drafted into secret behind-the-scenes projects to build AGI first, essentially a call to duty in partnership with the US government.

Anthropic is now after Pharma

707 points · 181 comments · r/singularity · by u/beasthunterr69

Anthropic is now after Pharma

Anthropic is expanding its focus into pharmaceutical research, leveraging Claude for drug discovery and research applications. The move represents a significant diversification beyond AI assistants into high-value scientific domains. Commenters note the strategic logic of using Claude for research while also observing that the company has been restricting biology-related prompts, possibly in preparation for this expansion.

Interesting Points
  • Anthropic is expanding into pharmaceutical research, leveraging Claude for drug discovery
  • The company has been restricting biology-related prompts, possibly in preparation for pharma expansion
  • Commenters note the strategic logic of monetizing Claude through research applications
Top Comment Threads
  1. u/Elbeske (185 points · permalink) -- Says the move was obvious and smart — if they can use Claude for research and turn revenue that way, why wouldn't they? Another commenter adds that they're mostly benefiting from pharma and healthcare professionals already using Claude for their work and research.
  2. u/Nasdali (100 points · permalink) -- Shares experience trialing 'Claude Crack' and notes that while the highs are great, the costs are astronomical to keep chasing the frontier.

Seedance 2.0 on OpenArt AI

4384 points · 430 comments · r/ChatGPT · by u/Obvious_Shoe7302

Seedance 2.0 on OpenArt AI

Seedance 2.0 video generation capabilities are being showcased on OpenArt AI, generating significant discussion about the implications of increasingly realistic AI-generated video content. The post sparked widespread concern about the erosion of video as reliable evidence, with users expressing fear of being scammed by AI-generated content.

Interesting Points
  • Seedance 2.0's video generation capabilities are generating significant community discussion
  • Users expressed widespread concern about video evidence becoming unreliable in an AI-generated world
  • The post generated 430 comments, indicating strong engagement with AI video generation topics
Top Comment Threads
  1. u/FailosoRaptor (2722 points · permalink) -- States we're entering a 'weird world where video evidence means nothing anymore.' Another commenter disagrees, suggesting that eventually the camera itself and correct camera angles will become required proof of authenticity.
  2. u/iamjohncarterofmars (493 points · permalink) -- Simply expresses that the technology is 'scary,' reflecting the general sentiment of unease about AI video generation.

Claude Fable scores 16.10% on the Remote Labor Automation index, double the next best contender (Opus)

509 points · 144 comments · r/singularity · by u/GeneReddit123

Claude Fable scores 16.10% on the Remote Labor Automation index, double the next best contender (Opus)

Claude Fable achieved 16.10% on the Remote Labor Automation index, double the score of the next best model, Opus. The index measures AI's ability to complete projects end-to-end to a level where a paying customer would accept them, making it a practical proxy for AGI capability. Commenters discuss the economic implications, noting that as inference costs continue to drop, mass worker displacement in cognitive labor will accelerate rapidly.

Interesting Points
  • Claude Fable scored 16.10% on the Remote Labor Automation index, double Opus's score
  • The index measures end-to-end project completion at a level where paying customers would accept the output
  • Inference costs drop by a factor of 44x every year on average, accelerating the path to economic displacement
Top Comment Threads
  1. u/GeneReddit123 (201 points · permalink) -- Argues the Remote Labor Automation index is one of the best proxies for what counts as AGI because it measures end-to-end project completion at a commercially acceptable level. Warns that mass worker displacement will rise exponentially as the number climbs. Another commenter adds that even if cost is the only barrier, iterative improvements in hardware and algorithms will get to displacement very quickly.
  2. u/DigSignificant1419 (64 points · permalink) -- Notes the training cost of 6 trillion tokens and $2 million. Another commenter, identifying as an AI researcher, predicts their own profession will be fully end-to-end automated by 2028 and urges political involvement to install safety nets.

OpenAI reportedly proposed giving the Trump administration 5% stake in the company

483 points · 182 comments · r/singularity · by u/Outside-Iron-8242

OpenAI reportedly proposed giving the Trump administration 5% stake in the company

OpenAI reportedly proposed giving the Trump administration a 5% stake in the company, valued at approximately $42.6 billion based on OpenAI's last reported $852 billion valuation. The proposal has drawn criticism from Reddit users who view it as a de facto bribe and an absurd bending of corporate power to political influence. The timing coincides with broader discussions about government oversight of AI development.

Interesting Points
  • OpenAI reportedly proposed a 5% stake to the Trump administration, valued at approximately $42.6 billion
  • The proposal was based on OpenAI's last reported valuation of $852 billion as of March 31
  • The move comes amid broader discussions about government oversight and regulation of AI development
Top Comment Threads
  1. u/Stunning_Mast2001 (402 points · permalink) -- Calls the proposal 'de facto bribes' that are 'absurd' and should be considered criminal scandals. Another commenter notes that with a felon as POTUS, 'criminality has become normal in the elite circles.'
  2. u/pdantix06 (137 points · permalink) -- Describes the move as 'completely bending over in subservience to Trump now.'

On July 1, 2026, arXiv will spin out from Cornell University, its home for the past 25 years, to become an independent nonprofit organization. Major funding support from Simons Foundation and Schmidt Sciences. Ditching the red for their website.

159 points · 7 comments · r/MachineLearning · by u/Nunki08

arXiv, the preprint server that has been the backbone of academic sharing in physics, math, and computer science for 25 years, is spinning out from Cornell University to become an independent nonprofit organization. The transition is backed by major funding from the Simons Foundation and Schmidt Sciences. The community is also noting the rebranding change — arXiv is ditching its iconic red color scheme, which was Cornell's color, since it's no longer affiliated with the university.

Interesting Points
  • arXiv is spinning out from Cornell University after 25 years to become an independent nonprofit
  • The transition is backed by major funding from the Simons Foundation and Schmidt Sciences
  • The community is noting the rebranding change — arXiv is ditching its iconic red color scheme
Top Comment Threads
  1. u/dudu43210 (43 points · permalink) -- Wanted to compare the new look to the old look by checking archive.org for previous versions of arxiv.org.
  2. u/idontcareaboutthenam (32 points · permalink) -- Asks why they're ditching the red. Another commenter explains that red was Cornell's color and they're no longer affiliated with Cornell.

I switched from Claude to ChatGPT. There's a stark difference.

558 points · 221 comments · r/ChatGPT · by u/Requirement-Lazy

A user shares their experience switching from Claude to ChatGPT for outbound sales email writing. While ChatGPT was better at writing emails in a human tone, they found Claude to be significantly worse — repeating previous conversation points, recycling past discussions, and failing to do online research or come up with new angles. The post sparked discussion about the tradeoffs between the two models and the importance of turning off ChatGPT's memory feature, which many users found to be overly repetitive.

Interesting Points
  • The user found ChatGPT better at writing emails in a human tone but Claude worse at generating novel ideas
  • Claude was criticized for repeating previous conversation points and recycling past discussions
  • Many commenters recommended turning off ChatGPT's memory feature, which they found to be overly repetitive
Top Comment Threads
  1. u/Affectionate_Mess266 (409 points · permalink) -- Recommends turning off ChatGPT's memory feature, which 'overemphasizes like 4 things it has decided to know about you and references them in every response.' Another commenter jokes it sounds like their ex.
  2. u/LordNikon2600 (240 points · permalink) -- Shares their own experience of '4 hours of hallucinations today... zero work done,' highlighting the reliability concerns with ChatGPT.

Claude Fable 5 officially available worldwide.

460 points · 68 comments · r/singularity · by u/EuSouAstrid

Claude Fable 5 officially available worldwide.

Anthropic announced that Claude Fable 5 and Mythos 5 are officially available worldwide after export controls were lifted following two weeks of coordination with the government. The resolution centers on a new safety classifier and a proposed industry-wide framework for grading jailbreak severity. Internal testing found that multiple other models, including GPT-5.5 and Kimi K2.7, were also capable of certain jailbreak behaviors.

Interesting Points
  • Export controls on Fable 5 and Mythos 5 were officially lifted after two weeks of government coordination
  • The resolution includes a new safety classifier and a proposed industry-wide framework for grading jailbreak severity
  • Anthropic's internal testing found that GPT-5.5 and Kimi K2.7 were also capable of certain jailbreak behaviors
Top Comment Threads
  1. u/____trash (138 points · permalink) -- Waits for Chinese open-source to produce a clone of Fable at a fraction of the cost. The original poster agrees it will happen but estimates a few months of waiting.
  2. u/Smoltinycat (37 points · permalink) -- Notes the irony that Dario Amodei got exactly what he wanted — government forcing safety features before safe release of new models — after years of campaigning for it, and questions why he isn't celebrating.

Quick Mentions

Report generated in 2m 41s.