{history.length === 0 && (
Ask me about Rock's experience, projects, or skills!
Type 'help' for commands
)}
{history.map((entry, i) => (
→ {entry.cmd}
{entry.isStreaming && !entry.output && (
{entry.thinking ? entry.thinking.slice(-80) : 'Working...'}
(Reasoning on V100 32GB, slight delay expected)
)}
{entry.output && (
{entry.output}
{entry.isStreaming && (
▊
)}
)}
))}
{/* Resize handle */}
setIsResizing(true)}
className={`absolute bottom-0 right-0 w-4 h-4 cursor-se-resize ${
isDark ? 'bg-gray-700 hover:bg-gray-600' : 'bg-gray-300 hover:bg-gray-400'
} transition-colors`}
style={{
borderBottomRightRadius: 'inherit',
opacity: isResizing ? 1 : 0.5,
}}
/>
)}
)
}