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,12 @@
import { Text } from "ink";
import { memo } from "react";
type ErrorLine = {
kind: "error";
id: string;
text: string;
};
export const ErrorMessage = memo(({ line }: { line: ErrorLine }) => {
return <Text>{line.text}</Text>;
});