OpenAI’s Head of Security Is Leaving the Firm

OpenAI’s Head of Security Is Leaving the Firm

OpenAI’s head of security programs, Johannes Heidecke, informed employees this week that he’s leaving the corporate, WIRED has discovered. Heidecke’s departure follows a reorganization that sought to combine OpenAI’s security and analysis groups. In a memo to employees seen by WIRED, chief analysis officer Mark Chen mentioned OpenAI’s security groups will now report back to…

Read Full News

OpenAI Releases GPT-Live and GPT-Live-1 mini: Full-Duplex Voice Models That Delegate Deeper Reasoning to GPT-5.5

“””Illustrative simulation of the GPT-Live full-duplex decision loop. Teaching model of the described architecture, NOT the real API.””” import random random.seed(7) # reproducible output class BackgroundModel: # stands in for GPT-5.5 def run(self, query): return f”answer to ‘{query}'” class GPTLive: def __init__(self, background): self.background = background self.pending = None # a delegated task, if one…

Read Full News