-
Notifications
You must be signed in to change notification settings - Fork 5
feat(web-ui): compress and summarize verbose execution event stream (#475) #497
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -82,6 +82,9 @@ export const agentStateBadgeStyles: Record<UIAgentState, string> = { | |||||||||||
| DISCONNECTED: 'bg-gray-100 text-gray-800 dark:bg-gray-800 dark:text-gray-300', | ||||||||||||
| }; | ||||||||||||
|
|
||||||||||||
| /** Badge style for the edit-group summary row in the EventStream. */ | ||||||||||||
| export const editGroupBadgeStyles = 'bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-300'; | ||||||||||||
|
|
||||||||||||
|
Comment on lines
+85
to
+87
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use gray badge classes for the new edit-group style constant. Line 86 introduces blue badge colors, which conflicts with the repo’s gray-only UI color scheme requirement for 🎨 Suggested change-export const editGroupBadgeStyles = 'bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-300';
+export const editGroupBadgeStyles = 'bg-gray-100 text-gray-800 dark:bg-gray-800 dark:text-gray-300';As per coding guidelines, 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||
| /** Human-readable labels for each agent state. */ | ||||||||||||
| export const agentStateLabels: Record<UIAgentState, string> = { | ||||||||||||
| CONNECTING: 'Connecting', | ||||||||||||
|
|
||||||||||||
Uh oh!
There was an error while loading. Please reload this page.