-
Notifications
You must be signed in to change notification settings - Fork 85
feat(DATAGO-118394): Implement automatic chat title generation using LLM #586
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WhiteSource Policy Violation Summary✅︎ No Blocking Whitesource Policy Violations found in solaceai/solace-agent-mesh-ui-pr-586! |
JKaram
approved these changes
Jan 16, 2026
Contributor
JKaram
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.




This pull request introduces animated AI-generated session titles to the chat UI, enhancing user feedback and visibility when session titles are being generated or updated. The changes add animation effects to session titles, provide an "AI Rename" option in the session list, and refactor the handling of session naming to be more responsive and visually engaging.
Session Title Animation and AI Integration:
Added a new
useTitleAnimationhook to animate session titles with pulse and fade effects, and to indicate when an AI-generated title is being processed or updated. This is used in both the session list and the chat page. [1] [2] [3] [4] [5] [6]Replaced static session name rendering with the new animated
SessionNamecomponent in the session list and applied animation classes to the chat page title for a more dynamic user experience. [1] [2] [3]AI Title Generation Workflow:
Added an "Rename with AI" option in the session dropdown menu, which triggers an AI-powered title generation process. The UI provides visual feedback (pulse animation) while the title is being generated and disables the option during processing. [1] [2]
Implemented logic to fetch and summarize recent chat messages as context for the AI title generation, and to handle updates upon title regeneration completion. [1] [2]
Refactoring and Hook Exports:
Removed the old
getSessionDisplayNamelogic in favor of the new animated title approach and cleaned up related code.Exported the new hooks (
useTitleGeneration,useTitleAnimation) from the hooks index for use throughout the codebase.These changes collectively provide a more interactive and informative chat experience, making it clear when session titles are being generated or updated by AI, and giving users direct control over AI-based session renaming.