2d665c9a67
### Sandbox Agents This release adds **Sandbox Agents**, a beta SDK surface for running agents with a persistent, isolated workspace. Sandbox agents keep the normal `Agent` and `Runner` flow, but add workspace manifests, sandbox-native capabilities, sandbox clients, snapshots, and resume support so agents can work over real files, run commands, edit repositories, generate artifacts, and continue work across runs. Key pieces: - `SandboxAgent`: an `Agent` with sandbox defaults such as `default_manifest`, sandbox instructions, capabilities, and `run_as`. - `Manifest`: a fresh-workspace contract for files, directories, local files, local directories, Git repos, environment, users, groups, and mounts. - `SandboxRunConfig`: per-run sandbox wiring for client creation, live session injection, serialized session resume, manifest overrides, snapshots, and materialization concurrency limits. - Built-in capabilities for shell access, filesystem editing and image inspection, skills, memory, and compaction. - Workspace snapshots and serialized sandbox session state for reconnecting to existing work or seeding a fresh sandbox from saved contents. ### Sandbox clients and hosted providers Sandbox agents now support local, containerized, and hosted execution backends: - `UnixLocalSandboxClient` for fast local development. - `DockerSandboxClient` for container isolation and image parity. - Hosted sandbox clients for Blaxel, Cloudflare, Daytona, E2B, Modal, Runloop, and Vercel through optional extras. The release also adds provider-specific examples and mount strategies for common storage backends, including S3, Cloudflare R2, Google Cloud Storage, Azure Blob Storage, and S3 Files where supported by the selected backend. ### Sandbox memory Adds a sandbox memory capability that lets future sandbox-agent runs learn from prior runs. Memory stores extracted lessons in the sandbox workspace, injects a concise summary into later runs, and uses progressive disclosure so agents can search deeper rollout summaries only when useful. Memory supports: - Read-only or generate-only modes. - Live updates when the agent discovers stale memory. - Multi-turn grouping through `conversation_id`, SDK `Session`, `RunConfig.group_id`, or generated run IDs. - Separate memory layouts for isolating memory across agents or workflows. - S3-backed examples for persisted memory across runs. ### Workspace mounts, snapshots, and resume This release adds a full workspace entry and mount model for sandbox sessions: - Local files and directories. - Synthetic files and directories. - Git repository entries. - Remote storage mounts for S3, R2, GCS, Azure Blob Storage, and S3 Files. - Provider-specific mount strategies across Docker, Modal, Cloudflare, Blaxel, Daytona, E2B, and Runloop. - Portable snapshots with path normalization, symlink preservation, mount-safe snapshotting, and remote snapshot support. - Resume paths through runner-managed `RunState`, explicit `SandboxSessionState`, or saved snapshots. ### Examples and tutorials Adds a large `examples/sandbox/` suite covering: - Local Unix and Docker sandbox runners. - Docker mount smoke tests for S3, GCS, Azure Blob Storage, and S3 Files. - Sandbox coding tasks with skills. - Sandbox agents as tools and handoff patterns. - Memory examples, including multi-agent/multi-turn memory and S3-backed memory. - Tax-prep and healthcare-support workflows. - Dataroom QA and metric extraction tutorials. - Repository code review tutorial. - Vision website clone tutorial. - Provider examples for Blaxel, Cloudflare, Daytona, E2B, Modal, Runloop, Temporal, and Vercel. ### Runtime, tracing, and model plumbing The release includes the runtime plumbing needed to make sandbox agents work naturally inside the existing SDK: - Runner-managed sandbox preparation, capability binding, session lifecycle, state serialization, and resume behavior. - Sandbox-aware `RunState` serialization. - Unified sandbox tracing with SDK spans. - Token usage on tracing spans. - Runner-managed prompt cache key defaults. - OpenAI agent registration and harness ID configuration. - Safer redaction of sensitive MCP tool outputs when sensitive tracing is disabled. - Additional OpenAI client/model utilities and Chat Completions coverage. ## Documentation & Other Changes - docs: add Asqav to external tracing processors list. - docs: update translated document pages. Co-authored-by: Abdulrahman Alfozan <alfozan@openai.com> Co-authored-by: Aditya Singh <60082699+adityasingh2400@users.noreply.github.com> Co-authored-by: Andi Liu <andi@openai.com> Co-authored-by: Aron <263346377+aron-cf@users.noreply.github.com> Co-authored-by: ashwinnathan-openai <ashwinnathan@openai.com> Co-authored-by: Codex <noreply@openai.com> Co-authored-by: cploujoux <cploujoux@blaxel.ai> Co-authored-by: elainegan-openai <168589666+elainegan-openai@users.noreply.github.com> Co-authored-by: Elias Freider <freider@users.noreply.github.com> Co-authored-by: Erik Dunteman <erik@erikds-macbook-air.local> Co-authored-by: Jason Liu <jasonliu@openai.com> Co-authored-by: Jason Steving <32336750+jasonsteving99@users.noreply.github.com> Co-authored-by: Kazuhiro Sera <seratch@openai.com> Co-authored-by: Lovre Pešut <lovre.pesut@gmail.com> Co-authored-by: Lucas Wang <lucas_wang@lucas-futures.com> Co-authored-by: Matt Brockman <matt.brockman@e2b.dev> Co-authored-by: Mish Ushakov <mishushakov@users.noreply.github.com> Co-authored-by: Naresh <ghostwriternr@gmail.com> Co-authored-by: nicholasclark-openai <nicholasclark@openai.com> Co-authored-by: qiyaoq-oai <qiyaoq@openai.com> Co-authored-by: Scott Trinh <scott@scotttrinh.com> Co-authored-by: tode-rl <tony@runloop.ai> Co-authored-by: Wendy Jiao <wendyjiao@openai.com>
146 lines
4.8 KiB
Python
146 lines
4.8 KiB
Python
from __future__ import annotations
|
|
|
|
import threading
|
|
from datetime import datetime
|
|
from typing import Any, Literal
|
|
|
|
from agents.tracing import Span, Trace, TracingProcessor
|
|
|
|
TestSpanProcessorEvent = Literal["trace_start", "trace_end", "span_start", "span_end"]
|
|
|
|
|
|
class SpanProcessorForTests(TracingProcessor):
|
|
"""
|
|
A simple processor that stores finished spans in memory.
|
|
This is thread-safe and suitable for tests or basic usage.
|
|
"""
|
|
|
|
def __init__(self) -> None:
|
|
self._lock = threading.Lock()
|
|
# Dictionary of trace_id -> list of spans
|
|
self._spans: list[Span[Any]] = []
|
|
self._traces: list[Trace] = []
|
|
self._events: list[TestSpanProcessorEvent] = []
|
|
|
|
def on_trace_start(self, trace: Trace) -> None:
|
|
with self._lock:
|
|
self._traces.append(trace)
|
|
self._events.append("trace_start")
|
|
|
|
def on_trace_end(self, trace: Trace) -> None:
|
|
with self._lock:
|
|
# We don't append the trace here, we want to do that in on_trace_start
|
|
self._events.append("trace_end")
|
|
|
|
def on_span_start(self, span: Span[Any]) -> None:
|
|
with self._lock:
|
|
# Purposely not appending the span here, we want to do that in on_span_end
|
|
self._events.append("span_start")
|
|
|
|
def on_span_end(self, span: Span[Any]) -> None:
|
|
with self._lock:
|
|
self._events.append("span_end")
|
|
self._spans.append(span)
|
|
|
|
def get_ordered_spans(self, including_empty: bool = False) -> list[Span[Any]]:
|
|
with self._lock:
|
|
spans = [x for x in self._spans if including_empty or x.export()]
|
|
return sorted(spans, key=lambda x: x.started_at or 0)
|
|
|
|
def get_traces(self, including_empty: bool = False) -> list[Trace]:
|
|
with self._lock:
|
|
traces = [x for x in self._traces if including_empty or x.export()]
|
|
return traces
|
|
|
|
def clear(self) -> None:
|
|
with self._lock:
|
|
self._spans.clear()
|
|
self._traces.clear()
|
|
self._events.clear()
|
|
|
|
def shutdown(self) -> None:
|
|
pass
|
|
|
|
def force_flush(self) -> None:
|
|
pass
|
|
|
|
|
|
SPAN_PROCESSOR_TESTING = SpanProcessorForTests()
|
|
|
|
|
|
def fetch_ordered_spans() -> list[Span[Any]]:
|
|
return SPAN_PROCESSOR_TESTING.get_ordered_spans()
|
|
|
|
|
|
def fetch_traces() -> list[Trace]:
|
|
return SPAN_PROCESSOR_TESTING.get_traces()
|
|
|
|
|
|
def fetch_events() -> list[TestSpanProcessorEvent]:
|
|
return SPAN_PROCESSOR_TESTING._events
|
|
|
|
|
|
def assert_no_spans():
|
|
spans = fetch_ordered_spans()
|
|
if spans:
|
|
raise AssertionError(f"Expected 0 spans, got {len(spans)}")
|
|
|
|
|
|
def assert_no_traces():
|
|
traces = fetch_traces()
|
|
if traces:
|
|
raise AssertionError(f"Expected 0 traces, got {len(traces)}")
|
|
assert_no_spans()
|
|
|
|
|
|
def fetch_normalized_spans(
|
|
keep_span_id: bool = False, keep_trace_id: bool = False
|
|
) -> list[dict[str, Any]]:
|
|
nodes: dict[tuple[str, str | None], dict[str, Any]] = {}
|
|
traces = []
|
|
for trace_obj in fetch_traces():
|
|
trace = trace_obj.export()
|
|
assert trace
|
|
assert trace.pop("object") == "trace"
|
|
assert trace["id"].startswith("trace_")
|
|
if not keep_trace_id:
|
|
del trace["id"]
|
|
trace = {k: v for k, v in trace.items() if v is not None}
|
|
nodes[(trace_obj.trace_id, None)] = trace
|
|
traces.append(trace)
|
|
|
|
assert traces, "Use assert_no_traces() to check for empty traces"
|
|
|
|
for span_obj in fetch_ordered_spans():
|
|
span = span_obj.export()
|
|
assert span
|
|
assert span.pop("object") == "trace.span"
|
|
assert span["id"].startswith("span_")
|
|
if not keep_span_id:
|
|
del span["id"]
|
|
assert datetime.fromisoformat(span.pop("started_at"))
|
|
assert datetime.fromisoformat(span.pop("ended_at"))
|
|
parent_id = span.pop("parent_id")
|
|
assert "type" not in span
|
|
span_data = span.pop("span_data")
|
|
span = {"type": span_data.pop("type")} | {k: v for k, v in span.items() if v is not None}
|
|
span_data = {k: v for k, v in span_data.items() if v is not None}
|
|
if span_data:
|
|
span["data"] = span_data
|
|
trace_id = span.pop("trace_id")
|
|
sdk_span_type = None
|
|
if span["type"] == "custom":
|
|
custom_data = span_data.get("data")
|
|
if isinstance(custom_data, dict):
|
|
sdk_span_type = custom_data.get("sdk_span_type")
|
|
if span["type"] in {"task", "turn"} or sdk_span_type in {"task", "turn"}:
|
|
parent = nodes[(trace_id, parent_id)]
|
|
if "error" in span and "error" not in parent:
|
|
parent["error"] = span["error"]
|
|
nodes[(trace_id, span_obj.span_id)] = parent
|
|
continue
|
|
|
|
nodes[(span_obj.trace_id, span_obj.span_id)] = span
|
|
nodes[(trace_id, parent_id)].setdefault("children", []).append(span)
|
|
return traces
|