What's new
Added 🎉
- Added
Beaker.job.follow()
and Beaker.experiment.follow()
methods for live streaming logs.
Changed ⚠️
- The return type of
Beaker.experiment.tasks()
behaves like both a Sequence[Task]
and a Mapping[str, Task]
, i.e.
you can call __getitem__()
with either an int
, slice
, or a str
for the name of a task.
Fixed ✅
- Fixed a bug where
Beaker.(job|experiment).(wait_for|as_completed)()
methods could hang if a job was canceled or failed to ever start for some reason.
Commits
f0b1d98 Add .follow()
methods (#130)