feat: add startup status messages showing agent provenance (#147)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2025-12-02 00:10:45 -08:00
committed by GitHub
parent 709de8efec
commit 5df327755f
9 changed files with 236 additions and 16 deletions

View File

@@ -44,6 +44,11 @@ export type Line =
output: string;
phase?: "running" | "finished";
success?: boolean;
}
| {
kind: "status";
id: string;
lines: string[]; // Multi-line status message with arrow formatting
};
// Top-level state object for all streaming events