openagenticresearch / ui /src /adapters /process /parse-stdout.ts
Leon4gr45's picture
Upload folder using huggingface_hub
029d2df verified
import type { TranscriptEntry } from "../types";
export function parseProcessStdoutLine(line: string, ts: string): TranscriptEntry[] {
return [{ kind: "stdout", ts, text: line }];
}