Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
- Viewer: log listing responses include the log dir's canonical URI (`log_dir_uri`) so the viewer can reliably scope its local cache to the directory.
- Inspect View: Reuse one warm async S3 client and connection pool across requests — for both log reads and directory listings — instead of creating one per operation, eliminating the per-request credential/connection cold-start (e.g. `/log-headers` ~3s -> ~0.3s, `/logs` ~1.5s -> ~0.06s).
- Model Roles: `resolve_model_roles` now copies a `Model` passed by object (e.g. via `eval(model_roles=...)`) before stamping its role, so roles supplied through the Python API — not just `--model-role` — get a distinct instance and are not misattributed. (#4464)
- Monitoring: New public schema types represent oracle-isolated monitor context, signal derivation and availability, and append-only attempt/sample records.

## 0.3.247 (16 July 2026)

Expand Down
17 changes: 17 additions & 0 deletions src/inspect_ai/monitor/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from ._types import (
ComponentRef,
MonitorContext,
MonitorRecord,
ProducerRef,
SignalDerivation,
SignalValue,
)

__all__ = [
"ComponentRef",
"MonitorContext",
"MonitorRecord",
"ProducerRef",
"SignalDerivation",
"SignalValue",
]
Loading