Skip to content
Merged
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
4 changes: 3 additions & 1 deletion openadapt_ml/cloud/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,9 @@ def do_GET(self):
# Session tracker provides elapsed_seconds and cost_usd for
# persistence across page refreshes
try:
from openadapt_evals.infrastructure.azure_ops_tracker import read_status
from openadapt_evals.infrastructure.azure_ops_tracker import (
read_status,
)
from openadapt_evals.infrastructure.session_tracker import (
get_session,
update_session_vm_state,
Expand Down
10 changes: 9 additions & 1 deletion openadapt_ml/scripts/capture_screenshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,15 @@ def capture_vm_monitor(output_path: Path, mock: bool = True) -> bool:
Returns:
True if successful, False otherwise
"""
cmd = ["uv", "run", "python", "-m", "openadapt_evals.benchmarks.vm_cli", "vm", "monitor"]
cmd = [
"uv",
"run",
"python",
"-m",
"openadapt_evals.benchmarks.vm_cli",
"vm",
"monitor",
]
if mock:
cmd.append("--mock")

Expand Down