wiki / entities / openai

OpenAI

high confidence updated 2026-08-27 company · agents · evaluation · security

OpenAI

OpenAI is an AI research and deployment company known for the GPT family of large language models, ChatGPT, and agent runtime infrastructure including the Codex coding harness and the Agents SDK.

Agent Harness Engineering & Architecture

OpenAI develops production agent harnesses and execution runtimes characterized by modular separation and system-level isolation:

  • Codex Harness (openai/codex): An open-source Rust agent workspace (codex-rs) implementing Clean Architecture and Hexagonal Architecture. It decouples the core turn loop from client frontends via codex-app-server (JSON-RPC) and enforces OS-level process isolation via multi-platform sandboxing (bwrap, Seatbelt, Windows restricted tokens).
  • Tool Specialization: Reinforcement learning alignment around structured tool interfaces such as apply_patch for unified diffs, integrated alongside the Model Context Protocol (codex-mcp).
  • Bounded Output Streams: Harness-level protection against context blowouts through head/tail stream buffers (unified_exec) and session time-travel primitives (thread_rollback, thread_fork).

Multi-Agent & Orchestration Research

OpenAI’s orchestration work spans:

  • Agents SDK: Multi-agent handoff patterns, guardrails, and persistent sessions.
  • Symphony: Issue-tracker-driven control plane for isolated autonomous agent execution.
  • BrowseComp: Benchmark evaluating browsing agent information retrieval in complex environments.

Benchmark Auditing

OpenAI’s 2026 audit of SWE-bench Verified reported two distinct validity problems at frontier performance levels: tests that reject functionally valid solutions and evidence that public tasks and gold patches have entered model training data. The organization stopped treating the benchmark as a reliable frontier launch measure and recommended less contaminated alternatives. [source: openai-swe-bench-verified-audit-2026]

Primary Sources