BriefTechNews

OpenAI Says GPT-6 Astra Is the Beginning of AGI, Tesla's Cybercab Takes Paid Rides

6 min read · 14 sources

TL;DR
  • OpenAI's GPT-6 Astra is rolling out via Daybreak, ChatGPT tiers, and cloud platforms, with the company claiming the model likely marks the onset of AGI.
  • Tesla began paid robotaxi rides in the Cybercab, a two-seat vehicle with no steering wheel, operating 45 Cybercabs among a fleet of 314 authorized vehicles in Texas.
  • A 66-year-old patient lived with a genetically modified pig kidney for nine months before receiving a human donor kidney, establishing the first proof of concept for bridge transplants.
  • Google Research and HHMI Janelia published a complete male fruit fly connectome: 166,000 neurons, 125 million synaptic connections, and the ventral nerve cord - the largest neuron-level brain map to date.
  • PostgreSQL 19 Beta 3 shipped with more breaking changes than usual, including JIT disabled by default, standard_conforming_strings permanently enforced, and RADIUS auth removed.
  • Zoom's My Notes feature detects third-party meeting apps by tailing macOS Unified Logging and Windows registry microphone records - without requiring its own microphone permission.

OpenAI says GPT-6 “Astra” probably marks the start of the AGI era. The promo video is mostly OpenAI staff talking to their computers in a voice-first loop, but the rollout is the real story: Astra is shipping into the gated “Daybreak” enterprise program today and will land over the coming days on ChatGPT Plus, Pro, Business, and Enterprise, plus the OpenAI API, AWS Bedrock, and Microsoft Azure. For teams that have been holding off on Bedrock or Azure-hosted OpenAI integrations, this is the version you’ve been waiting for to plan capacity. For everyone else, the relevant fact is that voice-driven, computer-controlling agents are now a shipping OpenAI product surface, not a research demo.

Tesla is authorized to operate 314 vehicles in Texas for paid rides without a driver, including 45 Cybercabs that have no steering wheel.

Tesla puts wheel-less cars in revenue service

Source: nytimes.com ↗

Tesla is now running paid driverless rides in Texas under a 314-vehicle authorization. Most of the fleet is Model Y, but 45 of them are Cybercabs, the two-seat vehicles with no steering wheel and no human fallback. (Side note: the source link labels the operator as OpenAI in the metadata, a clear error; the vehicles are Tesla’s.) The interesting engineering questions are now operational: how Tesla handles remote assist when there is no driver, the regulator’s tolerance for mixed fleets, and what the per-ride unit economics look like when 45 vehicles carry the hardware and software bill for the whole programme.

A pig kidney bought nine months of life

Source: nytimes.com ↗

Tim Andrews, 66, was too weak to walk when he received a genetically modified pig kidney in January; he lived with it for nine months before a human donor kidney became available. Surgeons have been implanting pig organs for a couple of years, but this is the first case where the xenograft was explicitly used as a bridge rather than a destination. For health-adjacent engineers, the relevant pattern is the same one transplant programs have been chasing for decades: matching patients to a finite donor pool in real time, only now with a backup organ that can hold the patient while they wait.

The complete male fruit fly connectome

Source: research.google ↗

Google Research, HHMI Janelia, and collaborators have published the full wiring diagram of the male Drosophila central nervous system: 166,000 neurons, 125 million synapses, plus the ventral nerve cord, all human-proofread at Janelia. It is browsable in Neuroglancer and downloadable for analysis, and slots in next to the existing female maps. If you build ML systems that touch neuroscience data, this is the new “download and benchmark” dataset, and at the cellular level it is the largest complete brain map that exists.

Meta's 60% headcut plan that didn't ship

Source: blog.pragmaticengineer.com ↗

The Pragmatic Engineer summarizes Reuters reporting on “Project OT,” a January Hawaii retreat plan to shrink many Meta teams by up to 60% by replacing human work with AI “virtual workers” overseen by “talent-dense” cadres. The plan was not executed, on top of a May round that already cut ~10% of engineers and moved another 20 - 30% of infra and product engineers into data-labeling work for AI training, after which Meta’s services suffered a string of high-profile outages. The takeaway for engineering managers is structural: Meta is openly tying org size and shape to AI substitution, and other large tech firms are watching, so the model you build your team around this year may not be the one that survives 2027.

LLMs as Three.js compute shaders

Source: ben3d.ca ↗

Ben Houston’s Three-LLM compiles inference graphs for GPT-2, Llama-style, Gemma 3, Phi, and Qwen 3.5 architectures into Three Shading Language (TSL) compute shaders that run on WebGPU. It loads Hugging Face configs, tokenizers, and SafeTensors checkpoints directly, ships CPU reference implementations, and bundles a demo with TinyStories 3M, GPT-2 124M, SmolLM2 135M, Qwen 3.5 0.8B, and Phi-1.5 1.3B, with weights expanded to 32-bit floats (15 MB up to 2.8 GB source files). The real value for graphics engineers is the reference: storage buffers, compute dispatches, workgroup memory, atomics, and GPU readback all in one place, with hundreds of ordered dispatches per token as the working example. Anything bigger than the smallest checkpoints will choke a phone.

Two views of what AI does to software

Source: ben-evans.com ↗

Benedict Evans argues that AI will not “sweep away” the long tail of corporate software, because most knowledge workers do not think in terms of building tools, and the value of software is institutional adoption, not generation. Large companies already run hundreds to thousands of apps, scripts, and shadow IT assets, and the bottleneck is recognising you need a tool, not producing one. Frontier AI makes a complementary point: model quality is converging (Claude 3 Opus on par with GPT-4 Turbo on Elo, Llama 3 within ~4%, Gemini 1.5 Pro within 1.5% of GPT-4o), GPT-4o cut cost and latency 2x versus GPT-4 Turbo in six months, and differentiation is moving from the model to the harness. The practical synthesis for builders: pick a model provider on price and latency, then fight over onboarding, templates, data, and workflow integration.

Grok Bot, designed around persistent agents

Source: x.ai ↗

xAI’s Grok Bot design rationale is a useful concrete read for anyone building agent products. The interface is built on five primitives: Bots (persistent agents with identity, memory, runtime, and tools), Chats (the conversational surface), Prompts (one-off, saved as Skills, or auto-triggered as Routines), Tools (APIs, shell, computer use), and Artifacts (durable outputs like docs and code). The interesting decision is what to hide: models, context windows, and sandboxes are deliberately not in the user-facing vocabulary. That split is the most copyable idea in the post.

Zoom is sniffing macOS Unified Logging to find Google Meet

Source: xusheng.dev ↗

Reverse-engineering of Zoom Workplace 7.1.5 (84650, arm64) on macOS shows that Zoom’s “My Notes” feature detects third-party meetings (Google Meet, Teams, Slack) by tailing the macOS Unified Logging stream for the com.apple.controlcenter sensor-indicators subsystem and parsing lines like Sorted active attributions from SystemStatus update: [mic] Google Chrome (com.google.Chrome). On Windows, it reads the per-user Capability Access Manager microphone records in the registry. Neither path requires admin rights or Zoom’s own microphone permission, which is the privacy hook: any engineer shipping a Mac or Windows app that wants to know what peripherals other apps are using can do the same thing without the user ever granting access.

Meta's two-tier API and the price of training data

Source: tomtunguz.com ↗

Tom Tunguz breaks down Meta’s “Muse Spark” launch, which introduced a two-tier API: a Standard tier (muse-spark-1.3) at $1.25/M input and $4.25/M output tokens with zero data retention, and a Contributor tier (muse-spark-1.3-contributor) at $0.10/M input and $0.20/M output, in exchange for Meta training on customer data, a roughly 92% discount. The ~$1.24/M token spread is Meta’s implicit valuation of training data, and the move unbundles the $20/month consumer subscription by making the data-for-discount barter explicit per token. The precedent matters: tiered API pricing tied to data rights rather than compute is now a pattern other providers can copy.

PostgreSQL 19 lands soon, with more breakages than usual

Source: tapoueh.org ↗

PostgreSQL 19 Beta 3 shipped on August 13, with GA expected in the September/October window. The release has more compatibility breaks than usual, and the ones to plan around are: JIT is now off by default (re-enable with jit = on), standard_conforming_strings is permanently on so old dumps with it off will refuse to load, RADIUS authentication has been removed, MD5 logins now warn, and the default GiST opclass for inet/cidr changes, with pg_upgrade refusing clusters that still have the old btree_gist ones, so you will need to REINDEX first. Test those paths before you schedule the upgrade window.

Get the brief

Liked this one? The rest of today's stack — AI, crypto, fintech, infra — lands in your inbox tomorrow morning. Five minutes, no hype.

About Me Author

My name is

BriefTechNews

A daily digest of what actually moved in AI, tech, crypto and fintech, assembled and written with AI, and reviewed before it publishes. Read More
Tags

You May Also Like