Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions extensions/cli/src/ui/components/MemoizedMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,6 @@ export const MemoizedMessage = memo<MemoizedMessageProps>(

// Handle system messages
if (isSystem) {
// TODO: Properly separate LLM system messages from UI informational messages
// using discriminated union types. For now, skip displaying the first system
// message which is typically the LLM's system prompt.
Comment on lines -59 to -61
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this does not seem to cause any problem as tested with baseSystemMessage set

if (index === 0) {
return null;
}

return (
<Box key={index} marginBottom={1}>
<Text color="dim" italic>
Expand Down
Loading