feat: letta code

This commit is contained in:
cpacker
2025-10-24 21:19:24 -07:00
commit 70ac76040d
139 changed files with 15340 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { Text } from "ink";
import { memo } from "react";
type AssistantLine = {
kind: "assistant";
id: string;
text: string;
phase: "streaming" | "finished";
};
export const AssistantMessage = memo(({ line }: { line: AssistantLine }) => {
return <Text>{line.text}</Text>;
});