Click any tag below to further narrow down your results
Links
Major record labels are suing Anthropic for allegedly using torrented music and songs to train Claude, arguing the $1.5 billion settlement with authors doesn't adequately punish the company. They claim Anthropic founders personally downloaded millions of copyrighted works and plan to keep using them indefinitely.
- Sony, EMI, and Warner Chappell allege Anthropic illegally downloaded "thousands upon thousands" of copyrighted songs via BitTorrent starting in July 2021, including works by Taylor Swift, Eminem, and the Beatles.
- Anthropic co-founder Benjamin Mann personally conducted the torrenting, with CEO Dario Amodei's approval; both are named as individual defendants.
- Publishers argue the $1.5 billion book settlement is insufficient deterrent given Anthropic's $2 trillion valuation, and that Claude can now generate songs mimicking artists' styles and reproduce lyrics verbatim, directly harming songwriters competing against AI-generated music.
Meta paused its Model Capability Initiative after an internal leak exposed employees’ private conversations, performance metrics, and keystroke logs across the company. The breach was rated SEV 2 on Meta’s 0–5 severity scale, prompting an investigation and a temporary suspension of the program.
- Meta paused its Model Capability Initiative (which recorded employee keystrokes/mouse movements for AI training) after a leak exposed private conversations, performance reviews, and transcription logs to all employees, rated SEV 2 on Meta's severity scale.
- Meta says there's no evidence the exposed data was abused, but is investigating how access controls failed.
- Employees are angry, saying Meta broke its promised privacy safeguards for a program that was already mandatory and controversial when launched in April.
- This follows other recent Meta security failures: an AI chatbot flaw that let attackers hijack Instagram accounts in May, and a rogue AI agent incident in March.
Jane Street builds its trading systems in OCaml, relying on the type system to catch errors at compile time and avoid run-time crashes. They snapshot every successful build to train an in-house AI model, rewarding only code changes that compile and pass tests.
- Jane Street runs its trading systems almost entirely on OCaml, betting on compile-time type checking (e.g., mandatory Option handling) to prevent costly runtime bugs.
- They rejected off-the-shelf tools like Copilot and Claude in favor of an in-house AI model trained on their own workspace snapshots.
- Developer workspaces are snapshotted every 20 seconds, and reinforcement learning rewards only edits that compile and pass tests.
- This snapshot-trained system underpins infrastructure supporting roughly $40 billion in annual trading volume.
Anthropic released a two-hour course led by the engineer behind Claude Code that walks you through building self-managing Claude agents. It covers terminal integration, file-system memory, hallucination-blocking hooks, and scaling to large codebases. Whether you’re a beginner or advanced user, you’ll finish ready to use Claude professionally.
- Anthropic released a free two-hour course on building Claude agents, led by the engineer who writes Claude Code
- Covers terminal integration, file-system-based memory, and hooks designed to catch and block hallucinations
- Includes guidance on scaling agents to large codebases via isolated environments and multi-file task orchestration
- Shows real failure examples (missing dependencies, misread logs) and how to harden pipelines against them