feat: add Todos

This commit is contained in:
Henry Li
2026-01-22 00:26:11 +08:00
parent 08101aa432
commit 1e4e51a80c
16 changed files with 232 additions and 72 deletions

View File

@@ -23,10 +23,12 @@ export function MessageList({
className,
threadId,
thread,
paddingBottom = 160,
}: {
className?: string;
threadId: string;
thread: UseStream<AgentThreadState>;
paddingBottom?: number;
}) {
if (thread.isThreadLoading) {
return <MessageListSkeleton />;
@@ -70,7 +72,7 @@ export function MessageList({
);
})}
{thread.isLoading && <StreamingIndicator className="my-4" />}
<div className="h-40" />
<div style={{ height: `${paddingBottom}px` }} />
</ConversationContent>
</Conversation>
);