malvin 0.2.4

Non-interactive research and coding agent
1
2
3
4
5
pub fn capture_stderr_output(f: impl FnOnce()) -> String {
    crate::output::clear_captured_stderr_lines();
    f();
    crate::output::take_captured_stderr_lines().join("")
}