mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-20 10:01:21 +00:00
Simplify assistant message spacing - just add spacer to components
This commit is contained in:
parent
f5176bb173
commit
e2649341f0
3 changed files with 9 additions and 3 deletions
|
|
@ -1,18 +1,21 @@
|
|||
import type { AssistantMessage, Message } from "@mariozechner/pi-ai";
|
||||
import { Container, Markdown, Text } from "@mariozechner/pi-tui";
|
||||
import { Container, Markdown, Spacer, Text } from "@mariozechner/pi-tui";
|
||||
import chalk from "chalk";
|
||||
|
||||
/**
|
||||
* Component that renders a streaming message with live updates
|
||||
*/
|
||||
export class StreamingMessageComponent extends Container {
|
||||
private spacer: Spacer;
|
||||
private markdown: Markdown;
|
||||
private statsText: Text;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.spacer = new Spacer(1);
|
||||
this.markdown = new Markdown("");
|
||||
this.statsText = new Text("", 1, 0);
|
||||
this.addChild(this.spacer);
|
||||
this.addChild(this.markdown);
|
||||
this.addChild(this.statsText);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue